2023-10-23 23:11:59 +02:00
|
|
|
import { getI18n } from "@/i18n/i18n.server"
|
2021-04-18 01:56:23 +02:00
|
|
|
|
2023-08-01 17:22:09 +02:00
|
|
|
export const ProfileInformation = (): JSX.Element => {
|
2023-07-31 19:06:46 +02:00
|
|
|
const i18n = getI18n()
|
2021-04-18 01:56:23 +02:00
|
|
|
|
|
|
|
return (
|
2023-10-23 23:11:59 +02:00
|
|
|
<div className="mb-6 border-b-2 border-gray-600 pb-2 font-headline dark:border-gray-400">
|
|
|
|
<h1 className="mb-2 text-4xl font-semibold text-yellow dark:text-yellow-dark">
|
2023-05-30 21:51:27 +02:00
|
|
|
Théo LUDWIG
|
2021-08-12 01:19:11 +02:00
|
|
|
</h1>
|
2023-10-23 23:11:59 +02:00
|
|
|
<h2 className="mb-3 text-base">
|
|
|
|
{i18n.translate("home.about.description")}
|
2023-07-31 19:06:46 +02:00
|
|
|
</h2>
|
2021-08-12 01:19:11 +02:00
|
|
|
</div>
|
2021-04-18 01:56:23 +02:00
|
|
|
)
|
|
|
|
}
|