Files
Compass/app/layout.tsx
2025-07-27 19:55:38 +02:00

29 lines
579 B
TypeScript

// app/layout.tsx
import "./globals.css";
import Header from "./Header";
import Providers from "./providers";
export const metadata = {
title: "BayesBond",
description: "A bonding platform for rational thinkers",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>
<Providers>
<div className="min-h-screen flex flex-col">
<Header />
<main className="flex-1">{children}</main>
</div>
</Providers>
</body>
</html>
);
}