diff --git a/packages/web/components/elements/StyledText.tsx b/packages/web/components/elements/StyledText.tsx index 215bcfd4c..d8ec66950 100644 --- a/packages/web/components/elements/StyledText.tsx +++ b/packages/web/components/elements/StyledText.tsx @@ -169,6 +169,15 @@ const textVariants = { fontWeight: 'bold', color: '$textSubtle', }, + aboutFooter: { + pt: '0px', + m: '0px', + fontSize: 24, + fontFamily: 'inter', + lineHeight: 'unset', + fontWeight: 'bold', + color: 'white', + }, error: { color: '$error', fontSize: '$2', diff --git a/packages/web/components/templates/About.tsx b/packages/web/components/templates/About.tsx new file mode 100644 index 000000000..e4e8394e6 --- /dev/null +++ b/packages/web/components/templates/About.tsx @@ -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 ( + <> + + + + + Omnivore is the free, open source, read-it-later app for serious + readers. + + + Distraction free. Privacy focused. Open source. Designed for + knowledge workers and lifelong learners. + + + + 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. + + + + + + + + + + ) +} diff --git a/packages/web/components/templates/landing/LandingFooter.tsx b/packages/web/components/templates/landing/LandingFooter.tsx index 41b9b614a..5caea4a8a 100644 --- a/packages/web/components/templates/landing/LandingFooter.tsx +++ b/packages/web/components/templates/landing/LandingFooter.tsx @@ -1,7 +1,8 @@ import Link from 'next/link' -import { Box, HStack } from '../../elements/LayoutPrimitives' +import { Box, HStack, VStack } from '../../elements/LayoutPrimitives' import { GithubLogo, DiscordLogo, TwitterLogo } from 'phosphor-react' -import { theme } from '../../tokens/stitches.config' +import { styled, theme } from '../../tokens/stitches.config' +import { StyledText } from '../../elements/StyledText' const containerStyles = { padding: '5vw', @@ -17,131 +18,90 @@ const containerStyles = { }, } -const titleStyles = { - maxWidth: 330, - fontWeight: 'normal', - fontSize: 18, - lineHeight: '27px', - color: '#FFFFFF', - mb: 45, - '@mdDown': { - fontSize: '3vw', - }, -} - -const socialsContainerStyles = { - maxWidth: 140, - marginBottom: 79, -} - -const copyrightStyles = { - maxWidth: 330, - fontWeight: 'normal', - fontSize: 18, - lineHeight: '27px', - color: '#5F5E58', -} - -const sectionOne = { - width: '60%', -} -const sectionTwo = { - width: '40%', - pt: 10, -} - -const contactStyles = { - fontWeight: '700', - fontSize: 36, - lineHeight: '39px', - color: 'white', - '@mdDown': { - fontSize: 26, - }, -} -const supportStyles = { - fontSize: 24, - lineHeight: '36px', - color: 'white', - '@mdDown': { - fontSize: '3vw', - }, - a: { - color: theme.colors.omnivoreCtaYellow.toString(), - }, -} - -const imageStyles = { - maxWidth: 190, - width: '100%', -} - -const socialIconContainerStyles = { - maxWidth: 32, - maxHeight: 32, -} - export function LandingFooter(): JSX.Element { + const FooterList = styled('ul', { + listStyle: 'none', + paddingLeft: '0', + li: { + pt: '15px', + }, + a: { + color: '$omnivoreCtaYellow', + textDecoration: 'none', + '&:hover': { + textDecoration: 'underline', + }, + }, + }) + return ( - - - Everything you read. Safe, organized, and easy to share. - - - - - - + + + Install + +
  • + iOS +
  • +
  • + macOS +
  • +
  • + + Android (preview release) - - - - - - +
  • +
  • + Chrome Extension +
  • +
  • + + Firefox Extension - - - - - - +
  • +
  • + Safari Extension +
  • +
  • + Edge Extension +
  • + + + + Get Help + +
  • + Contact us via email +
  • +
  • + + Join our community on Discord - - - - © 2023 Omnivore - - - - - - Download on the App Store - - - {/* - - - app-store - - - */} - - Contact - - support@omnivore.app - - +
  • +
  • + Read our Docs +
  • +
    +
    + + + Follow + +
  • + Twitter +
  • +
  • + Mastodon +
  • +
  • + Blog +
  • +
  • + GitHub +
  • +
    +
    +
    ) } diff --git a/packages/web/components/templates/landing/LandingSection.tsx b/packages/web/components/templates/landing/LandingSection.tsx index 456ba4382..40cd92601 100644 --- a/packages/web/components/templates/landing/LandingSection.tsx +++ b/packages/web/components/templates/landing/LandingSection.tsx @@ -1,22 +1,16 @@ import { HStack, VStack, Box } from '../../elements/LayoutPrimitives' -import { CSS, styled } from '@stitches/react' type LandingSectionProps = { titleText: string descriptionText: React.ReactElement icon?: React.ReactElement image: React.ReactElement - containerStyles?: CSS } -const MainContainer = styled(HStack, { - width: '100%', -}) - const titleTextStyles = { fontWeight: '700', color: '#3D3D3D', - lineHeight: 1.5, + lineHeight: 1.25, '@mdDown': { fontSize: 24, }, @@ -28,37 +22,55 @@ const titleTextStyles = { }, } -const descriptionTextStyles = { - color: 'rgb(125, 125, 125)', -} - const imageContainerStyles = { - width: '50%', + display: 'flex', + width: '49%', alignSelf: 'center', + justifyContent: 'center', + '@md': { + marginBottom: '60px', + }, '@mdDown': { width: '100%', }, } const layoutStyles = { - width: '50%', - alignSelf: 'center', - padding: 20, + width: '49%', + alignSelf: 'start', '@mdDown': { width: '100%', + paddingTop: '30px', }, + paddingLeft: '30px', + paddingRight: '30px', + paddingBottom: '30px', } export function LandingSection(props: LandingSectionProps): JSX.Element { return ( - + - - {props.titleText} - {props.descriptionText} - + {props.titleText} + + {props.descriptionText} + {props.image} - + ) } diff --git a/packages/web/components/templates/landing/LandingSectionsContainer.tsx b/packages/web/components/templates/landing/LandingSectionsContainer.tsx index 759e59b8d..a2d0acfeb 100644 --- a/packages/web/components/templates/landing/LandingSectionsContainer.tsx +++ b/packages/web/components/templates/landing/LandingSectionsContainer.tsx @@ -46,14 +46,6 @@ const containerStyles = { }, } -const reversedSectionStyles = { - flexDirection: 'row-reverse', - marginBottom: 20, - '@mdDown': { - width: '100%', - }, -} - const callToActionStyles = { background: 'white', borderRadius: '24px', @@ -78,9 +70,12 @@ const callToActionText = { color: '#3D3D3D', fontWeight: '700', fontSize: 64, - lineHeight: '70px', + lineHeight: '1.25', textAlign: 'center', - padding: '20px', + paddingBottom: '20px', + '@mdDown': { + fontSize: '32px', + }, } export function LandingSectionsContainer(): JSX.Element { @@ -111,66 +106,41 @@ export function LandingSectionsContainer(): JSX.Element { - Omnivore strips away the ads, trackers, and clutter and formats - pages for easy reading without distractions. The text-focused view - also makes articles smaller and quicker to load. -

    - } - image={ - landing-2 - } - /> - -

    - With the Omnivore app for iOS and Android and extensions for all - major web browsers, you can add to your reading list any time. -

    -

    - Saved articles remain in your Omnivore library forever — even if - the site where you found them goes away. Access them any time in - our reader view or in their original format. + Save articles, PDFs, and Twitter threads as you come across them + using Omnivore&aposs mobile apps and browser extensions. Read them + later using our distraction free reader.

    } image={ landing-3 } - containerStyles={reversedSectionStyles} /> - Send subscriptions directly to your Omnivore library, and read them - on your own time, away from the constant distractions and - interruptions of your email inbox. + Send newsletters directly to your Omnivore library rather than + scattered across multiple inboxes. Read them on your own time, away + from the constant distractions and interruptions of your email.

    } image={ landing-4 @@ -178,67 +148,107 @@ export function LandingSectionsContainer(): JSX.Element { /> - Read what you want, not what some algorithm says you should. Keep - your reading organized and easily available with labels, filters, - and fully indexed text searches. + Keep your reading organized and easily available with labels, + filters, rules, and fully indexed text searches. We&aposre not here + to tell you how to stay organized — our job is to give you the tools + to build a system that works for you.

    } image={ landing-5 } - containerStyles={reversedSectionStyles} /> - The intuitive command palette puts basic and advanced functionality - at your fingertips. Keyboard shortcuts for all features mean your - hands never have to leave the keyboard. Our open-source app allows - integrations with knowledge bases and note-taking apps, using - plug-ins or by triggering webhooks. + Become a better reader — engage your brain and improve retention by + reading actively, not passively. Highlight key sections and add + notes as you read. You can access your highlights and notes any time + — they stay with your articles forever.

    } image={ landing-6 } /> + - Omnivore for iOS features realistic humanlike text-to-speech. So you - can give your eyes a break and listen to any article saved to your - library. + Omnivore syncs with popular Personal Knowledge Management systems + including Logseq and Obsidian, so you can pull all your saved + reading, highlights, and notes into your second brain.

    } image={ landing-7 } - containerStyles={reversedSectionStyles} /> + + + Work through your to-be-read list and give your eyes a break with + TTS, exclusively in the Omnivore app for iOS. Realistic, + natural-sounding AI voices will read any saved article aloud. +

    + } + image={ + landing-8 + } + /> + + + Reading is a lifetime activity, and you shouldn't have to worry + you'll lose your library after you've spent years building + it. Our open-source platform ensures your reading won't be held + prisoner in a proprietary system. +

    + } + image={ + landing-9 + } + /> + Get Started With Omnivore Today diff --git a/packages/web/pages/about.tsx b/packages/web/pages/about.tsx index c1e3be3c7..c20f7e268 100644 --- a/packages/web/pages/about.tsx +++ b/packages/web/pages/about.tsx @@ -6,6 +6,7 @@ import { import { LandingHeader } from '../components/templates/landing/LandingHeader' import { LandingFooter } from '../components/templates/landing/LandingFooter' import { PageMetaData } from '../components/patterns/PageMetaData' +import { About } from '../components/templates/About' const containerStyles = { alignSelf: 'center', @@ -48,47 +49,7 @@ export default function LandingPage(): JSX.Element { description="Omnivore is the free, open source, read-it-later app for serious readers." /> - - - - - Omnivore is the free, open source, read-it-later app for serious - readers. - - - Distraction free. Privacy focused. Open source. - - - - Save interesting articles, newsletter subscriptions, 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. - - - - - - - - + ) } diff --git a/packages/web/pages/index.tsx b/packages/web/pages/index.tsx index 3327f1af7..9b1eb20ab 100644 --- a/packages/web/pages/index.tsx +++ b/packages/web/pages/index.tsx @@ -9,6 +9,7 @@ import { useGetViewerQuery } from '../lib/networking/queries/useGetViewerQuery' import { useRouter } from 'next/router' import { PageMetaData } from '../components/patterns/PageMetaData' import { LoadingView } from '../components/patterns/LoadingView' +import { About } from '../components/templates/About' const containerStyles = { alignSelf: 'center', @@ -71,47 +72,7 @@ export default function LandingPage(): JSX.Element { description="Omnivore is the free, open source, read-it-later app for serious readers." /> - - - - - Omnivore is the free, open source, read-it-later app for serious - readers. - - - Distraction free. Privacy focused. Open source. - - - - Save interesting articles, newsletter subscriptions, 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. - - - - - - - - + ) } diff --git a/packages/web/pages/zh/index.tsx b/packages/web/pages/zh/index.tsx index cb55bd5be..2d7a538c2 100644 --- a/packages/web/pages/zh/index.tsx +++ b/packages/web/pages/zh/index.tsx @@ -6,6 +6,7 @@ import { import { LandingHeader } from '../../components/templates/landing/LandingHeader' import { LandingFooter } from '../../components/templates/landing/LandingFooter' import { PageMetaData } from '../../components/patterns/PageMetaData' +import { About } from '../../components/templates/About' const containerStyles = { alignSelf: 'center', @@ -48,47 +49,7 @@ export default function LandingPage(): JSX.Element { description="Omnivore is the free, open source, read-it-later app for serious readers." /> - - - - - Omnivore is the free, open source, read-it-later app for serious - readers. - - - Distraction free. Privacy focused. Open source. - - - - Save interesting articles, newsletter subscriptions, 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. - - - - - - - - + ) } diff --git a/packages/web/public/static/landing/landing-1.png b/packages/web/public/static/landing/landing-1.png deleted file mode 100644 index bd6c11c0b..000000000 Binary files a/packages/web/public/static/landing/landing-1.png and /dev/null differ diff --git a/packages/web/public/static/landing/landing-1@2x.png b/packages/web/public/static/landing/landing-1@2x.png deleted file mode 100644 index 0a59e4b23..000000000 Binary files a/packages/web/public/static/landing/landing-1@2x.png and /dev/null differ diff --git a/packages/web/public/static/landing/landing-2.png b/packages/web/public/static/landing/landing-2.png deleted file mode 100644 index 17dc66bc5..000000000 Binary files a/packages/web/public/static/landing/landing-2.png and /dev/null differ diff --git a/packages/web/public/static/landing/landing-2@2x.png b/packages/web/public/static/landing/landing-2@2x.png deleted file mode 100644 index c4fe75fb8..000000000 Binary files a/packages/web/public/static/landing/landing-2@2x.png and /dev/null differ diff --git a/packages/web/public/static/landing/landing-3.png b/packages/web/public/static/landing/landing-3.png deleted file mode 100644 index bd49932cf..000000000 Binary files a/packages/web/public/static/landing/landing-3.png and /dev/null differ diff --git a/packages/web/public/static/landing/landing-3@2x.png b/packages/web/public/static/landing/landing-3@2x.png deleted file mode 100644 index a1784cf0b..000000000 Binary files a/packages/web/public/static/landing/landing-3@2x.png and /dev/null differ diff --git a/packages/web/public/static/landing/landing-4.png b/packages/web/public/static/landing/landing-4.png index bcb786cff..8e3374570 100644 Binary files a/packages/web/public/static/landing/landing-4.png and b/packages/web/public/static/landing/landing-4.png differ diff --git a/packages/web/public/static/landing/landing-4@2x.png b/packages/web/public/static/landing/landing-4@2x.png index 5cbadd221..c25ad4930 100644 Binary files a/packages/web/public/static/landing/landing-4@2x.png and b/packages/web/public/static/landing/landing-4@2x.png differ diff --git a/packages/web/public/static/landing/landing-5.png b/packages/web/public/static/landing/landing-5.png deleted file mode 100644 index dcb5b7754..000000000 Binary files a/packages/web/public/static/landing/landing-5.png and /dev/null differ diff --git a/packages/web/public/static/landing/landing-5@2x.png b/packages/web/public/static/landing/landing-5@2x.png deleted file mode 100644 index 617eb02ab..000000000 Binary files a/packages/web/public/static/landing/landing-5@2x.png and /dev/null differ diff --git a/packages/web/public/static/landing/landingPage-02@1x.png b/packages/web/public/static/landing/landingPage-02@1x.png new file mode 100644 index 000000000..66f465ee4 Binary files /dev/null and b/packages/web/public/static/landing/landingPage-02@1x.png differ diff --git a/packages/web/public/static/landing/landingPage-02@2x.png b/packages/web/public/static/landing/landingPage-02@2x.png new file mode 100644 index 000000000..9dd8dade6 Binary files /dev/null and b/packages/web/public/static/landing/landingPage-02@2x.png differ diff --git a/packages/web/public/static/landing/landingPage-02@3x.png b/packages/web/public/static/landing/landingPage-02@3x.png new file mode 100644 index 000000000..89bfdfec8 Binary files /dev/null and b/packages/web/public/static/landing/landingPage-02@3x.png differ diff --git a/packages/web/public/static/landing/landingPage-03@1x.png b/packages/web/public/static/landing/landingPage-03@1x.png new file mode 100644 index 000000000..b2348759d Binary files /dev/null and b/packages/web/public/static/landing/landingPage-03@1x.png differ diff --git a/packages/web/public/static/landing/landingPage-03@2x.png b/packages/web/public/static/landing/landingPage-03@2x.png new file mode 100644 index 000000000..ce4223df4 Binary files /dev/null and b/packages/web/public/static/landing/landingPage-03@2x.png differ diff --git a/packages/web/public/static/landing/landingPage-03@3x.png b/packages/web/public/static/landing/landingPage-03@3x.png new file mode 100644 index 000000000..e7f20e94a Binary files /dev/null and b/packages/web/public/static/landing/landingPage-03@3x.png differ diff --git a/packages/web/public/static/landing/landingPage-04.png b/packages/web/public/static/landing/landingPage-04.png new file mode 100644 index 000000000..4cf729428 Binary files /dev/null and b/packages/web/public/static/landing/landingPage-04.png differ diff --git a/packages/web/public/static/landing/landingPage-04@2x.png b/packages/web/public/static/landing/landingPage-04@2x.png new file mode 100644 index 000000000..588742700 Binary files /dev/null and b/packages/web/public/static/landing/landingPage-04@2x.png differ diff --git a/packages/web/public/static/landing/landingPage-04@3x.png b/packages/web/public/static/landing/landingPage-04@3x.png new file mode 100644 index 000000000..1c9c2823e Binary files /dev/null and b/packages/web/public/static/landing/landingPage-04@3x.png differ diff --git a/packages/web/public/static/landing/landingPage-05@1x.png b/packages/web/public/static/landing/landingPage-05@1x.png new file mode 100644 index 000000000..81b203b8a Binary files /dev/null and b/packages/web/public/static/landing/landingPage-05@1x.png differ diff --git a/packages/web/public/static/landing/landingPage-05@2x.png b/packages/web/public/static/landing/landingPage-05@2x.png new file mode 100644 index 000000000..168d819aa Binary files /dev/null and b/packages/web/public/static/landing/landingPage-05@2x.png differ diff --git a/packages/web/public/static/landing/landingPage-05@3x.png b/packages/web/public/static/landing/landingPage-05@3x.png new file mode 100644 index 000000000..898d2a7eb Binary files /dev/null and b/packages/web/public/static/landing/landingPage-05@3x.png differ diff --git a/packages/web/public/static/landing/landingPage-06@1x.png b/packages/web/public/static/landing/landingPage-06@1x.png new file mode 100644 index 000000000..a87a6ef33 Binary files /dev/null and b/packages/web/public/static/landing/landingPage-06@1x.png differ diff --git a/packages/web/public/static/landing/landingPage-06@2x.png b/packages/web/public/static/landing/landingPage-06@2x.png new file mode 100644 index 000000000..519a9a3ce Binary files /dev/null and b/packages/web/public/static/landing/landingPage-06@2x.png differ diff --git a/packages/web/public/static/landing/landingPage-06@3x.png b/packages/web/public/static/landing/landingPage-06@3x.png new file mode 100644 index 000000000..b0a43f113 Binary files /dev/null and b/packages/web/public/static/landing/landingPage-06@3x.png differ diff --git a/packages/web/public/static/landing/landingPage-07@1x.png b/packages/web/public/static/landing/landingPage-07@1x.png new file mode 100644 index 000000000..e32fbff46 Binary files /dev/null and b/packages/web/public/static/landing/landingPage-07@1x.png differ diff --git a/packages/web/public/static/landing/landingPage-07@2x.png b/packages/web/public/static/landing/landingPage-07@2x.png new file mode 100644 index 000000000..0cadef9d9 Binary files /dev/null and b/packages/web/public/static/landing/landingPage-07@2x.png differ diff --git a/packages/web/public/static/landing/landingPage-07@3x.png b/packages/web/public/static/landing/landingPage-07@3x.png new file mode 100644 index 000000000..67e7863b6 Binary files /dev/null and b/packages/web/public/static/landing/landingPage-07@3x.png differ diff --git a/packages/web/public/static/landing/landingPage-08@1x.png b/packages/web/public/static/landing/landingPage-08@1x.png new file mode 100644 index 000000000..4c6566272 Binary files /dev/null and b/packages/web/public/static/landing/landingPage-08@1x.png differ diff --git a/packages/web/public/static/landing/landingPage-08@2x.png b/packages/web/public/static/landing/landingPage-08@2x.png new file mode 100644 index 000000000..aa28da564 Binary files /dev/null and b/packages/web/public/static/landing/landingPage-08@2x.png differ diff --git a/packages/web/public/static/landing/landingPage-08@3x.png b/packages/web/public/static/landing/landingPage-08@3x.png new file mode 100644 index 000000000..07ab81ba7 Binary files /dev/null and b/packages/web/public/static/landing/landingPage-08@3x.png differ diff --git a/packages/web/public/static/landing/landingPage-09@1x.png b/packages/web/public/static/landing/landingPage-09@1x.png new file mode 100644 index 000000000..5f868a417 Binary files /dev/null and b/packages/web/public/static/landing/landingPage-09@1x.png differ diff --git a/packages/web/public/static/landing/landingPage-09@2x.png b/packages/web/public/static/landing/landingPage-09@2x.png new file mode 100644 index 000000000..5b084e246 Binary files /dev/null and b/packages/web/public/static/landing/landingPage-09@2x.png differ diff --git a/packages/web/public/static/landing/landingPage-1.png b/packages/web/public/static/landing/landingPage-1.png deleted file mode 100644 index 9c667c11e..000000000 Binary files a/packages/web/public/static/landing/landingPage-1.png and /dev/null differ diff --git a/packages/web/public/static/landing/landingPage-2.png b/packages/web/public/static/landing/landingPage-2.png deleted file mode 100644 index 9a707b4dd..000000000 Binary files a/packages/web/public/static/landing/landingPage-2.png and /dev/null differ diff --git a/packages/web/public/static/landing/landingPage-2@2x.png b/packages/web/public/static/landing/landingPage-2@2x.png deleted file mode 100644 index 77b3596c9..000000000 Binary files a/packages/web/public/static/landing/landingPage-2@2x.png and /dev/null differ diff --git a/packages/web/public/static/landing/landingPage-2@3x.png b/packages/web/public/static/landing/landingPage-2@3x.png deleted file mode 100644 index c3bd23a51..000000000 Binary files a/packages/web/public/static/landing/landingPage-2@3x.png and /dev/null differ diff --git a/packages/web/public/static/landing/landingPage-3.png b/packages/web/public/static/landing/landingPage-3.png deleted file mode 100644 index 36eb4e82f..000000000 Binary files a/packages/web/public/static/landing/landingPage-3.png and /dev/null differ diff --git a/packages/web/public/static/landing/landingPage-3@2x.png b/packages/web/public/static/landing/landingPage-3@2x.png deleted file mode 100644 index 26fbc980d..000000000 Binary files a/packages/web/public/static/landing/landingPage-3@2x.png and /dev/null differ diff --git a/packages/web/public/static/landing/landingPage-3@3x.png b/packages/web/public/static/landing/landingPage-3@3x.png deleted file mode 100644 index 1a52c64e1..000000000 Binary files a/packages/web/public/static/landing/landingPage-3@3x.png and /dev/null differ diff --git a/packages/web/public/static/landing/landingPage-4.png b/packages/web/public/static/landing/landingPage-4.png deleted file mode 100644 index 43fbb6c30..000000000 Binary files a/packages/web/public/static/landing/landingPage-4.png and /dev/null differ diff --git a/packages/web/public/static/landing/landingPage-4@2x.png b/packages/web/public/static/landing/landingPage-4@2x.png deleted file mode 100644 index 20e6a4a42..000000000 Binary files a/packages/web/public/static/landing/landingPage-4@2x.png and /dev/null differ diff --git a/packages/web/public/static/landing/landingPage-4@3x.png b/packages/web/public/static/landing/landingPage-4@3x.png deleted file mode 100644 index da578e94c..000000000 Binary files a/packages/web/public/static/landing/landingPage-4@3x.png and /dev/null differ diff --git a/packages/web/public/static/landing/landingPage-5.png b/packages/web/public/static/landing/landingPage-5.png deleted file mode 100644 index 22ba39229..000000000 Binary files a/packages/web/public/static/landing/landingPage-5.png and /dev/null differ diff --git a/packages/web/public/static/landing/landingPage-5@2x.png b/packages/web/public/static/landing/landingPage-5@2x.png index bf348afa9..bb448af5d 100644 Binary files a/packages/web/public/static/landing/landingPage-5@2x.png and b/packages/web/public/static/landing/landingPage-5@2x.png differ diff --git a/packages/web/public/static/landing/landingPage-5@3x.png b/packages/web/public/static/landing/landingPage-5@3x.png index cc6143bda..3832045a4 100644 Binary files a/packages/web/public/static/landing/landingPage-5@3x.png and b/packages/web/public/static/landing/landingPage-5@3x.png differ diff --git a/packages/web/public/static/landing/landingPage-6.png b/packages/web/public/static/landing/landingPage-6.png deleted file mode 100644 index 7fb07537e..000000000 Binary files a/packages/web/public/static/landing/landingPage-6.png and /dev/null differ diff --git a/packages/web/public/static/landing/landingPage-6@2x.png b/packages/web/public/static/landing/landingPage-6@2x.png deleted file mode 100644 index ef3c59f82..000000000 Binary files a/packages/web/public/static/landing/landingPage-6@2x.png and /dev/null differ diff --git a/packages/web/public/static/landing/landingPage-6@3x.png b/packages/web/public/static/landing/landingPage-6@3x.png deleted file mode 100644 index 04fb80dce..000000000 Binary files a/packages/web/public/static/landing/landingPage-6@3x.png and /dev/null differ diff --git a/packages/web/public/static/landing/landingPage-7.png b/packages/web/public/static/landing/landingPage-7.png deleted file mode 100644 index 9bb683e5b..000000000 Binary files a/packages/web/public/static/landing/landingPage-7.png and /dev/null differ diff --git a/packages/web/public/static/landing/landingPage-7@2x.png b/packages/web/public/static/landing/landingPage-7@2x.png deleted file mode 100644 index 16d7d46d3..000000000 Binary files a/packages/web/public/static/landing/landingPage-7@2x.png and /dev/null differ diff --git a/packages/web/public/static/landing/landingPage-7@3x.png b/packages/web/public/static/landing/landingPage-7@3x.png deleted file mode 100644 index 4b556ca0c..000000000 Binary files a/packages/web/public/static/landing/landingPage-7@3x.png and /dev/null differ