Files
brain-dump/app/layout.tsx
T

23 lines
547 B
TypeScript
Raw Normal View History

2026-01-02 17:51:55 +01:00
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>
);
}