Files
XauBot/web-dashboard/src/app/layout.tsx
T

37 lines
818 B
TypeScript
Raw Normal View History

import type { Metadata } from "next";
import { Inter, JetBrains_Mono } from "next/font/google";
import "./globals.css";
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
display: "swap",
});
const jetbrainsMono = JetBrains_Mono({
variable: "--font-jetbrains",
subsets: ["latin"],
display: "swap",
});
export const metadata: Metadata = {
title: "XAUBOT AI — Trading Monitor",
description: "Real-time monitoring dashboard for XAUBOT AI Trading Bot",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className="dark">
<body
className={`${inter.variable} ${jetbrainsMono.variable} antialiased bg-background text-foreground`}
>
{children}
</body>
</html>
);
}