From 381634882ec81b282cfc0c0e5afd23bf8eac2efd Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Wed, 14 Sep 2022 10:47:37 +0800 Subject: [PATCH] Remove unused template for old About page --- packages/web/components/templates/About.tsx | 148 -------------------- 1 file changed, 148 deletions(-) delete mode 100644 packages/web/components/templates/About.tsx diff --git a/packages/web/components/templates/About.tsx b/packages/web/components/templates/About.tsx deleted file mode 100644 index b004515e4..000000000 --- a/packages/web/components/templates/About.tsx +++ /dev/null @@ -1,148 +0,0 @@ -import { HStack, VStack } from '../elements/LayoutPrimitives' -import { OmnivoreNameLogo } from '../elements/images/OmnivoreNameLogo' -import Image from 'next/image' -import { StyledText } from '../elements/StyledText' -import { Button } from '../elements/Button' -import { theme } from '../tokens/stitches.config' - -export function About(): JSX.Element { - return ( - - - - - - Everything you read. Safe, organized, and easy to share. - - - - - - Illustration of Woman Reading - - - - - This is Omnivore - - - Collect and share the best of the web - - - - - - - - ) -} - -type AboutSectionProps = { - title: string - description: string - imageSource: string - imageAltText: string - leadWithImage: boolean -} - -function AboutSection(props: AboutSectionProps): JSX.Element { - return ( - - - - {props.title} - - - {props.description} - - - - - {props.imageAltText} - - - - ) -}