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