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. + + + + + + + + + + ) +}