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
This commit is contained in:
@@ -1,26 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter, JetBrains_Mono } from "next/font/google";
|
||||
import { Ubuntu, Ubuntu_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const inter = Inter({
|
||||
const ubuntu = Ubuntu({
|
||||
subsets: ["latin"],
|
||||
variable: "--font-inter",
|
||||
weight: ["300", "400", "500", "700"],
|
||||
variable: "--font-ubuntu",
|
||||
});
|
||||
|
||||
const jetbrainsMono = JetBrains_Mono({
|
||||
const ubuntuMono = Ubuntu_Mono({
|
||||
subsets: ["latin"],
|
||||
variable: "--font-jetbrains-mono",
|
||||
weight: ["400", "700"],
|
||||
variable: "--font-ubuntu-mono",
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "FTDT Quant Lab",
|
||||
description: "Professional quantitative trading dashboard — live testnet, paper mainnet, historical backtests",
|
||||
title: "Quant Dashboard",
|
||||
description: "Live testnet, paper mainnet, historical backtests",
|
||||
};
|
||||
|
||||
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<html lang="en" className="dark">
|
||||
<body className={`${inter.variable} ${jetbrainsMono.variable} antialiased`}>
|
||||
<html lang="en">
|
||||
<body className={`${ubuntu.variable} ${ubuntuMono.variable} antialiased`}>
|
||||
{children}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user