From 5e539ad82cc1d1c83fa914239d455ede1bc023e6 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Tue, 24 Jan 2023 18:29:10 +0800 Subject: [PATCH] Add missing About file --- packages/web/components/templates/About.tsx | 87 +++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 packages/web/components/templates/About.tsx 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. + + + + + + + + + + ) +}