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