Files
omnivore/packages/web/pages/discover.tsx
Thomas Rogers c0373646cb Fix Linting...
2024-01-09 11:22:32 +01:00

28 lines
733 B
TypeScript

import { PrimaryLayout } from "../components/templates/PrimaryLayout"
import { VStack } from "./../components/elements/LayoutPrimitives"
import { DiscoverContainer } from "../components/templates/discoverFeed/DiscoverContainer"
export default function Discover(): JSX.Element {
return <LoadedContent />
}
function LoadedContent(): JSX.Element {
return (
<PrimaryLayout
pageMetaDataProps={{
title: 'Discover - Omnivore',
path: '/discover',
}}
pageTestId="discover-page-tag"
>
<VStack
alignment="center"
distribution="center"
css={{ backgroundColor: '$thLibraryBackground' }}
>
<DiscoverContainer />
</VStack>
</PrimaryLayout>
)
}