Files
matheoguilbert.fr/app/[locale]/page.tsx
T

7 lines
222 B
TypeScript

export default function Home() {
return (
<main className="min-h-screen bg-brand-beige text-brand-black flex items-center justify-center">
<h1 className="font-serif text-6xl">Hello World</h1>
</main>
);
}