mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-15 16:43:12 +01:00
18 lines
486 B
TypeScript
18 lines
486 B
TypeScript
import type { LocaleProps } from "@repo/i18n/routing"
|
|
import { CurriculumVitae } from "@repo/ui/CurriculumVitae"
|
|
import { setRequestLocale } from "next-intl/server"
|
|
|
|
interface CurriculumVitaeProps extends LocaleProps {}
|
|
|
|
const CurriculumVitaePage: React.FC<CurriculumVitaeProps> = async (props) => {
|
|
const { params } = props
|
|
|
|
const { locale } = await params
|
|
// Enable static rendering
|
|
setRequestLocale(locale)
|
|
|
|
return <CurriculumVitae />
|
|
}
|
|
|
|
export default CurriculumVitaePage
|