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
+1
View File
@@ -0,0 +1 @@
@import "tailwindcss";
+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>
);
}
+8
View File
@@ -0,0 +1,8 @@
export default function Page() {
return (
<div className="p-4">
<h1 className="text-2xl font-bold">Jessy David</h1>
<p>Hello World !</p>
</div>
);
}