Files
cvp/frontend/src/app/[locale]/page.tsx
T

11 lines
285 B
TypeScript
Raw Normal View History

export default function HomePage() {
return (
<main className="p-8">
<h1 className="text-3xl font-bold">CVP CV Personnalisé</h1>
<p className="mt-2 text-muted-foreground">
Application de recherche d&apos;emploi intelligente
</p>
</main>
);
}