-
Notifications
You must be signed in to change notification settings - Fork 0
Added Home Page Content and Mock Grid #91
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
Open
Kxlcl
wants to merge
1
commit into
main
Choose a base branch
from
kelly/homepage
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,20 +1,63 @@ | ||
| import { Anchor, Stack, Text, Title } from "@mantine/core"; | ||
| import { Link } from "react-router-dom"; | ||
| import { Flex, List, Mark, Stack, Text } from "@mantine/core"; | ||
|
|
||
| /** Public landing page. */ | ||
| export default function HomePage() { | ||
| return ( | ||
| <Stack> | ||
| <Title order={1}>PatChats</Title> | ||
| <Text> | ||
| Monthly one-on-one coffee chat pairings for the Patina Network. | ||
| </Text> | ||
| <Anchor component={Link} to="/sign-up"> | ||
| Complete the signup form | ||
| </Anchor> | ||
| <Anchor component={Link} to="/sample"> | ||
| Go to the app | ||
| </Anchor> | ||
| </Stack> | ||
| <Flex | ||
| gap="xl" | ||
| align="stretch" | ||
| py="xl" | ||
| style={{ paddingLeft: 250, paddingRight: 150 }} | ||
| > | ||
| <Stack style={{ width: 400, flexShrink: 0 }}> | ||
| <Text size="28px" lh={1.25}> | ||
| PatChats is a program where every month you will get matched with | ||
| another Patina member and have a 30 minute video call or coffee chat! | ||
| </Text> | ||
| <List spacing="md" style={{ fontSize: "16px", lineHeight: 1.25 }}> | ||
| <List.Item> | ||
| At the end, share your socials and take a fun selfie or screenshot | ||
| to share on the <Mark color="patina">#pat-chats</Mark> channel on | ||
| our Discord! | ||
| </List.Item> | ||
| <List.Item> | ||
| Connect with other members within the Patina network to learn more | ||
| about each other and share our diverse backgrounds, professional | ||
| journeys, and career insights. | ||
| </List.Item> | ||
| <List.Item> | ||
| Our goal is to foster a more positive, tight-knit community where we | ||
| can support one another in reaching our life and career aspirations | ||
| and have some fun while we're at it! | ||
| </List.Item> | ||
| </List> | ||
| </Stack> | ||
| <div | ||
| style={{ | ||
| flex: 1, | ||
| display: "grid", | ||
| gridTemplateColumns: "repeat(4, 1fr)", | ||
| gridTemplateRows: "repeat(4, 1fr)", | ||
| gap: "8px", | ||
| paddingLeft: 32, | ||
| minHeight: 0, | ||
| }} | ||
| > | ||
| <div | ||
| style={{ gridArea: "span 2 / span 2", border: "1px solid gray" }} | ||
| /> | ||
| <div style={{ border: "1px solid gray" }} /> | ||
| <div style={{ gridColumn: "4", border: "1px solid gray" }} /> | ||
| <div style={{ border: "1px solid gray" }} /> | ||
| <div style={{ border: "1px solid gray" }} /> | ||
| <div style={{ border: "1px solid gray" }} /> | ||
| <div style={{ border: "1px solid gray" }} /> | ||
| <div | ||
| style={{ gridArea: "span 2 / span 2", border: "1px solid gray" }} | ||
| /> | ||
| <div style={{ gridColumn: "1", border: "1px solid gray" }} /> | ||
| <div style={{ gridColumn: "2", border: "1px solid gray" }} /> | ||
| </div> | ||
| </Flex> | ||
| ); | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,15 @@ | ||
| import { IntroText } from "@/features/sign-up/components/IntroText"; | ||
| import { SignUpForm } from "@/features/sign-up/components/SignUpForm"; | ||
| import { Stack, Title } from "@mantine/core"; | ||
| import { Container, Stack, Title } from "@mantine/core"; | ||
|
|
||
| export function SignUpPage() { | ||
| return ( | ||
| <Stack gap="xl"> | ||
| <Title order={2}>PatChats Sign Up Form</Title> | ||
| <IntroText /> | ||
| <SignUpForm /> | ||
| </Stack> | ||
| <Container py="xl" size="sm"> | ||
| <Stack gap="xl"> | ||
| <Title order={2}>PatChats Sign Up Form</Title> | ||
| <IntroText /> | ||
| <SignUpForm /> | ||
| </Stack> | ||
| </Container> | ||
| ); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.