-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
1fe26df
commit a202b9a
Showing
5 changed files
with
62 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import * as S from './styles' | ||
import { Container } from './styles' | ||
|
||
const {{pascalCase name}} = () => ( | ||
<S.Wrapper> | ||
<Container> | ||
<h1>{{pascalCase name}}</h1> | ||
</S.Wrapper> | ||
</Container> | ||
) | ||
|
||
export default {{pascalCase name}} |
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
import * as S from './styles' | ||
import { Wrapper, Logo, Title, Description } from './styles' | ||
|
||
const Main = ({ | ||
title = 'Shelter Buddy', | ||
description = 'Shelter Management Software, track your animals, volunteers, donors and more' | ||
}) => ( | ||
<S.Wrapper> | ||
<S.Logo src="/img/logo.svg" alt="shelter buddy brand" /> | ||
<S.Title>{title}</S.Title> | ||
<S.Description>{description}</S.Description> | ||
</S.Wrapper> | ||
<Wrapper> | ||
<Logo src="/img/logo.svg" alt="shelter buddy brand" /> | ||
<Title>{title}</Title> | ||
<Description>{description}</Description> | ||
</Wrapper> | ||
) | ||
|
||
export default Main |
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,43 @@ | ||
export default { | ||
grid: { | ||
container: '1128px', | ||
gutter: '156px' | ||
}, | ||
border: { | ||
radius: { | ||
medium: '12px', | ||
pill: '100px' | ||
} | ||
}, | ||
font: { | ||
family: "'Inter', -apple-system, sans-serif", | ||
regular: 400, | ||
medium: 500, | ||
bold: 600, | ||
sizes: { | ||
xsmall: '12px', | ||
small: '14px', | ||
medium: '16px', | ||
large: '22px' | ||
} | ||
}, | ||
colors: { | ||
mainBg: '#F6F7FA', | ||
black: '#000121', | ||
darkGray: '#707183', | ||
blue: '#002FD6', | ||
middleGray: '##A1A2AF', | ||
white: '#FFFFFF', | ||
softBlue: '#E0E7FD' | ||
}, | ||
transition: { | ||
default: '0.3s ease-in-out', | ||
fast: '0.1s ease-in-out' | ||
}, | ||
mediaQueries: { | ||
small: 375, | ||
medium: 768, | ||
large: 992, | ||
extraLarge: 1200 | ||
} | ||
} as const |