Files
ftdt-quant-lab/dashboard-next/src/app/layout.tsx
T
ramseshk 6552511978 Hallmark Cobalt: unified light palette + Ubuntu fonts
Layout: Ubuntu + Ubuntu Mono (next/font/google), light mode
CSS: Hallmark Cobalt palette — cool paper bg, hairlines,
  electric cobalt primary, slate secondary
Cards: white bg, hairline borders, muted type badges
Header/tabs: Ubuntu Mono labels, Ubuntu tab buttons
Removed: dark mode, Inter/JetBrains Mono, purple gradients
2026-08-06 04:22:50 +00:00

31 lines
742 B
TypeScript

import type { Metadata } from "next";
import { Ubuntu, Ubuntu_Mono } from "next/font/google";
import "./globals.css";
const ubuntu = Ubuntu({
subsets: ["latin"],
weight: ["300", "400", "500", "700"],
variable: "--font-ubuntu",
});
const ubuntuMono = Ubuntu_Mono({
subsets: ["latin"],
weight: ["400", "700"],
variable: "--font-ubuntu-mono",
});
export const metadata: Metadata = {
title: "Quant Dashboard",
description: "Live testnet, paper mainnet, historical backtests",
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body className={`${ubuntu.variable} ${ubuntuMono.variable} antialiased`}>
{children}
</body>
</html>
);
}