Files
e2e 373b42a994
Some checks failed
Main / Setup and Test (push) Has been cancelled
Main / Build Website (push) Has been cancelled
chore: heygermany customer project
2026-07-11 10:06:51 +02:00

12 lines
295 B
TypeScript

import Content from './content.mdx'
import { useMDXComponents } from '@/mdx-components'
import { Container } from '@pikku/mantine/core'
export default function TermsPage() {
return (
<Container size="xl" mt="xl">
<Content components={useMDXComponents({})} />
</Container>
)
}