mirror of
https://github.com/arkorty/B.Tech-Project-III.git
synced 2026-04-19 12:41:48 +00:00
44 lines
1.0 KiB
TypeScript
44 lines
1.0 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Roboto, JetBrains_Mono } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const roboto = Roboto({
|
|
variable: "--font-roboto",
|
|
subsets: ["latin"],
|
|
weight: ["300", "400", "500", "700"],
|
|
});
|
|
|
|
const jetbrainsMono = JetBrains_Mono({
|
|
variable: "--font-jetbrains-mono",
|
|
subsets: ["latin"],
|
|
weight: ["400", "500"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "negoT8 — Mission Control",
|
|
description: "Real-time AI agent negotiation dashboard",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" className="dark">
|
|
<head>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
<body
|
|
className={`${roboto.variable} ${jetbrainsMono.variable} antialiased`}
|
|
style={{ fontFamily: "var(--font-roboto), sans-serif" }}
|
|
>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|