-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
147 additions
and
186 deletions.
There are no files selected for viewing
This file contains 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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file contains 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 was deleted.
Oops, something went wrong.
This file contains 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 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 |
---|---|---|
|
@@ -3,7 +3,8 @@ | |
} | ||
|
||
.header > p { | ||
padding: 0 2rem; | ||
max-width: 25rem; | ||
margin: 0 auto 2.5rem; | ||
} | ||
|
||
.form { | ||
|
This file contains 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 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 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 |
---|---|---|
@@ -0,0 +1,62 @@ | ||
import React from 'react'; | ||
import { Link } from 'react-router-dom'; | ||
import { | ||
Box, | ||
Button, | ||
Container, | ||
Image, | ||
Paper, | ||
Text, | ||
Title, | ||
} from '@mantine/core'; | ||
|
||
/** | ||
* Home page component. | ||
*/ | ||
function Home() { | ||
return ( | ||
<> | ||
<header> | ||
<Image | ||
src="/logo.svg" | ||
w={{ base: 60, sm: 100 }} | ||
h={{ base: 60, sm: 100 }} | ||
m="2rem" | ||
/> | ||
</header> | ||
<main> | ||
<Container> | ||
<Title order={1} ta="center"> | ||
SF Life Line | ||
</Title> | ||
<Box maw={300} m="1.25rem auto 4rem"> | ||
Provide more efficient and equitable care with timely access to | ||
patient information. | ||
</Box> | ||
</Container> | ||
<Container size="sm"> | ||
<Paper bg="blue.1" p={{ base: '2.5rem 1.5rem', sm: '2.5rem 4rem' }}> | ||
<Title order={3} mb="1rem"> | ||
For First Responders | ||
</Title> | ||
<Title order={4}>Benefits of Signing Up</Title> | ||
<Text mb="2rem"> | ||
You will obtain timely access to patient healthcare information. | ||
This can be helpful in situations where there are barriers to | ||
care, including language barriers or mental incapacity. | ||
</Text> | ||
<Button component={Link} to="/register"> | ||
Sign Up | ||
</Button> | ||
| ||
<Button component={Link} to="/login" variant="default"> | ||
Log In | ||
</Button> | ||
</Paper> | ||
</Container> | ||
</main> | ||
</> | ||
); | ||
} | ||
|
||
export default Home; |
This file was deleted.
Oops, something went wrong.
This file contains 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.