1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-10-06 05:26:09 +02:00
.profile/apps/website/app/[locale]/curriculum-vitae/page.tsx

20 lines
451 B
TypeScript
Raw Normal View History

2024-07-31 19:23:14 +02:00
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