12 lines
297 B
TypeScript
12 lines
297 B
TypeScript
import Content from './content.mdx'
|
|
import { useMDXComponents } from '@/mdx-components'
|
|
import { Container } from '@pikku/mantine/core'
|
|
|
|
export default function PrivacyPage() {
|
|
return (
|
|
<Container size="xl" mt="xl">
|
|
<Content components={useMDXComponents({})} />
|
|
</Container>
|
|
)
|
|
}
|