New copy for about and login pages

This commit is contained in:
Jackson Harper
2022-09-14 11:19:19 +08:00
parent 381634882e
commit d617a50bfa
3 changed files with 21 additions and 31 deletions

View File

@ -18,9 +18,9 @@ export type LoginFormProps = {
export function LoginForm(props: LoginFormProps): JSX.Element {
const StyledTextHeadline = styled('h1', {
fontStyle: 'normal',
fontWeight: '400',
fontSize: '50px',
lineHeight: '100%',
fontWeight: '700',
fontSize: '45px',
lineHeight: '53px',
color: '$omnivoreGray',
m: '0px',
})
@ -38,7 +38,7 @@ export function LoginForm(props: LoginFormProps): JSX.Element {
}}
>
<StyledTextHeadline>
Never miss a great read.
A read it later app for serious readers.
</StyledTextHeadline>
<StyledText css={{ fontStyle: 'normal',
fontWeight: '400',

View File

@ -131,17 +131,6 @@ export function LandingSectionsContainer({
const iconColor = 'rgb(255, 210, 52)'
return (
<VStack alignment='center' distribution='start' css={containerStyles}>
<VStack distribution='center'>
<Box css={titleStyles}>
This is Omnivore
</Box>
<SpanBox css={underlineIconStyles}>
<CurvedUnderlineIcon />
</SpanBox>
</VStack>
<Box css={subTitleText}>
Collect and share the best of the web
</Box>
{!hideFirst && (
<LandingSection
titleText='Simply reader-friendly'

View File

@ -6,27 +6,23 @@ import { LandingFooter } from '../components/templates/landing/LandingFooter'
const mobileContainerStyles = {
maxWidth: 430,
alignSelf: 'center',
px: 10,
display: 'none',
marginTop: 60,
'@mdDown': {
display: 'flex',
}
marginTop: 80,
padding: '10px',
}
const headingStyles = {
fontWeight: '700',
fontSize: 42,
lineHeight: '46px',
mb: 16
color: '#3D3D3D',
fontSize: 45,
lineHeight: '53px',
padding: '10px',
}
const subHeadingStyles = {
fontWeight: '700',
fontSize: 24,
lineHeight: '36px',
color: '#5F5E58',
color: 'rgb(125, 125, 125)',
mb: 32,
padding: '10px',
}
export default function LandingPage(): JSX.Element {
@ -35,11 +31,14 @@ export default function LandingPage(): JSX.Element {
<LandingHeader />
<VStack css={{ background: '#FEFCF5', color: '#3D3D3D' }}>
<VStack css={mobileContainerStyles}>
<Box css={headingStyles}>Collect and share the best of the web</Box>
<Box css={headingStyles}>A read it later app for serious readers.</Box>
<Box css={subHeadingStyles}>
Everything you read. Safe, organized, and easy to share.
Omnivore is a privacy focused, open-source read-it-later app.
Use it to save interesting articles and read distraction free.
Add notes and highlights.
Organise your reading queue the way you want and sync it across all your devices.
</Box>
<Box css={{mb: 40}}>
<Box css={{ mb: 40, padding: '10px' }}>
<GetStartedButton />
</Box>
</VStack>
@ -49,3 +48,5 @@ export default function LandingPage(): JSX.Element {
</>
)
}