Initial commit

This commit is contained in:
2025-11-24 14:25:27 +01:00
commit da613c822a
12 changed files with 4223 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import type { Metadata } from "next";
import { ReactNode } from "react";
import "./globals.css";
export const metadata: Metadata = {
title: "Portfolio · Jessy David",
description: "Portfolio de Jessy David",
};
export default function RootLayout({
children,
}: Readonly<{
children: ReactNode;
}>) {
return (
<html lang="fr">
<body className="antialiased">{children}</body>
</html>
);
}