diff --git a/apps/user-profile/src/components/modules/UserOnboardingModal/PlatformOnboarding/PageThree/PageThree.js b/apps/user-profile/src/components/modules/UserOnboardingModal/PlatformOnboarding/PageThree/PageThree.js new file mode 100644 index 000000000..d34f67ff5 --- /dev/null +++ b/apps/user-profile/src/components/modules/UserOnboardingModal/PlatformOnboarding/PageThree/PageThree.js @@ -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 ( + + First off, What Role Best Describes You? + We'll use this to recommend open source projects for you to work on. + + + + + + + ); +} \ No newline at end of file diff --git a/apps/user-profile/src/components/modules/UserOnboardingModal/PlatformOnboarding/PageThree/StyledPageThree.js b/apps/user-profile/src/components/modules/UserOnboardingModal/PlatformOnboarding/PageThree/StyledPageThree.js new file mode 100644 index 000000000..610cb2859 --- /dev/null +++ b/apps/user-profile/src/components/modules/UserOnboardingModal/PlatformOnboarding/PageThree/StyledPageThree.js @@ -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; +` + diff --git a/apps/user-profile/src/components/modules/UserOnboardingModal/PlatformOnboarding/PageThree/index.js b/apps/user-profile/src/components/modules/UserOnboardingModal/PlatformOnboarding/PageThree/index.js new file mode 100644 index 000000000..7c17069b7 --- /dev/null +++ b/apps/user-profile/src/components/modules/UserOnboardingModal/PlatformOnboarding/PageThree/index.js @@ -0,0 +1 @@ +export {default} from "./PageThree"; \ No newline at end of file