18 lines
489 B
TypeScript
18 lines
489 B
TypeScript
import { NavigationLayout } from '../../components/templates/NavigationLayout'
|
|
import { Box } from '../../components/elements/LayoutPrimitives'
|
|
import { LibraryContainer } from '../../components/templates/library/LibraryContainer'
|
|
|
|
export default function Library(): JSX.Element {
|
|
return (
|
|
<NavigationLayout
|
|
section="library"
|
|
pageMetaDataProps={{
|
|
title: 'Library',
|
|
path: '/library',
|
|
}}
|
|
>
|
|
<LibraryContainer />
|
|
</NavigationLayout>
|
|
)
|
|
}
|