1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-05-29 22:37:44 +02:00

feat: init Curriculum Vitae

This commit is contained in:
2024-07-31 19:23:14 +02:00
parent b5c50728de
commit b4611e4a7f
16 changed files with 77 additions and 24 deletions

View File

@ -0,0 +1,19 @@
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