mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-03-03 14:27:13 -05:00
29 lines
579 B
TypeScript
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>
|
|
);
|
|
}
|