mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Add missing About file
This commit is contained in:
parent
54727dd00c
commit
5e539ad82c
1 changed files with 87 additions and 0 deletions
87
packages/web/components/templates/About.tsx
Normal file
87
packages/web/components/templates/About.tsx
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
import { VStack, Box } from '../elements/LayoutPrimitives'
|
||||
import { LandingHeader } from './landing/LandingHeader'
|
||||
import {
|
||||
GetStartedButton,
|
||||
LandingSectionsContainer,
|
||||
} from './landing/LandingSectionsContainer'
|
||||
import { LandingFooter } from './landing/LandingFooter'
|
||||
|
||||
export function About(): JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<LandingHeader />
|
||||
<VStack
|
||||
alignment="center"
|
||||
css={{ background: '#FEFCF5', color: '#3D3D3D' }}
|
||||
>
|
||||
<VStack
|
||||
css={{
|
||||
alignSelf: 'center',
|
||||
marginTop: 80,
|
||||
maxWidth: 960,
|
||||
px: '2vw',
|
||||
'@md': {
|
||||
px: '6vw',
|
||||
},
|
||||
'@xl': {
|
||||
px: '120px',
|
||||
},
|
||||
}}
|
||||
>
|
||||
<Box
|
||||
css={{
|
||||
fontWeight: '700',
|
||||
color: '#3D3D3D',
|
||||
fontSize: 45,
|
||||
lineHeight: '53px',
|
||||
padding: '10px',
|
||||
paddingBottom: '0px',
|
||||
textAlign: 'center',
|
||||
}}
|
||||
>
|
||||
Omnivore is the free, open source, read-it-later app for serious
|
||||
readers.
|
||||
</Box>
|
||||
<Box
|
||||
css={{
|
||||
color: 'rgb(125, 125, 125)',
|
||||
padding: '10px',
|
||||
textAlign: 'center',
|
||||
width: '100%',
|
||||
fontWeight: '600',
|
||||
}}
|
||||
>
|
||||
Distraction free. Privacy focused. Open source. Designed for
|
||||
knowledge workers and lifelong learners.
|
||||
</Box>
|
||||
|
||||
<Box
|
||||
css={{
|
||||
color: 'rgb(125, 125, 125)',
|
||||
padding: '10px',
|
||||
textAlign: 'center',
|
||||
}}
|
||||
>
|
||||
Save articles, newsletters, and documents and read them later —
|
||||
focused and distraction free. Add notes and highlights. Organize
|
||||
your reading list the way you want and sync it across all your
|
||||
devices.
|
||||
</Box>
|
||||
<Box
|
||||
css={{
|
||||
mb: 40,
|
||||
padding: '10px',
|
||||
width: '100%',
|
||||
display: 'flex',
|
||||
justifyContent: 'center',
|
||||
}}
|
||||
>
|
||||
<GetStartedButton />
|
||||
</Box>
|
||||
</VStack>
|
||||
<LandingSectionsContainer />
|
||||
</VStack>
|
||||
<LandingFooter />
|
||||
</>
|
||||
)
|
||||
}
|
||||
Loading…
Reference in a new issue