Initial commit

This commit is contained in:
UltraLionFr
2026-01-02 17:52:07 +01:00
parent b29bd25170
commit 972bafc4e0
36 changed files with 8742 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import AuthProvider from "@/components/AuthProvider";
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Brain Dump",
description: "Organise tes pensées avec Brain Dump",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="fr">
<body className="antialiased bg-gray-900 text-white">
<AuthProvider>{children}</AuthProvider>
</body>
</html>
);
}