mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-10 06:18:07 +01:00
20 lines
451 B
TypeScript
20 lines
451 B
TypeScript
import type { LocaleProps } from "@repo/i18n/config"
|
|
import { unstable_setRequestLocale } from "next-intl/server"
|
|
|
|
interface CurriculumVitaeProps extends LocaleProps {}
|
|
|
|
const CurriculumVitaePage: React.FC<CurriculumVitaeProps> = (props) => {
|
|
const { params } = props
|
|
|
|
// Enable static rendering
|
|
unstable_setRequestLocale(params.locale)
|
|
|
|
return (
|
|
<main>
|
|
<h1>CurriculumVitae</h1>
|
|
</main>
|
|
)
|
|
}
|
|
|
|
export default CurriculumVitaePage
|