Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Third onboarding tour page #1190

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import { Typography } from "@devlaunchers/components/components/atoms";
import RoleCard from "./RoleCard/RoleCard.js";
import { PageThereeContainer, ThreeRoleCards } from "./StyledPageThree.js";

export default function PageThree(){
return (
<PageThereeContainer>
<Typography type="h4">First off, What Role Best Describes You?</Typography>
<Typography type="subtitle">We'll use this to recommend open source projects for you to work on.</Typography>
<ThreeRoleCards>
<RoleCard
iconImg="Onboarding"
title="Developer"
subtitle="You’re here to work on our codebase"
theme="theme1"
/>
<RoleCard
iconImg="Onboarding"
title="UX Designer"
subtitle="You’re here to make our platform user friendly"
theme="theme2"
/>
<RoleCard
iconImg="Onboarding"
title=" Other"
subtitle="You’re a surprise!"
theme="theme3"
/>
</ThreeRoleCards>
</PageThereeContainer>
);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import styled from "styled-components";

export const PageThereeContainer = styled.div`
text-align: center;
`

export const ThreeRoleCards = styled.div`
display: flex;
flex-direction: row;
`

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {default} from "./PageThree";
Loading