import type { Metadata } from "next"; import { Inter, DM_Serif_Display } from "next/font/google"; import "./globals.css"; const inter = Inter({ subsets: ["latin"], variable: "--font-inter" }); const display = DM_Serif_Display({ subsets: ["latin"], weight: "400", style: ["normal", "italic"], variable: "--font-display", }); export const metadata: Metadata = { title: "Aartha — Your money. Your truth. Zero conflict.", description: "Subscription-only personal finance. Zero ads. Zero referral fees. Every insight aligned only with you.", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return ( {children} ); }