import type { Metadata } from 'next' import { Source_Serif_4 } from 'next/font/google' import './globals.css' // Primary typeface: Source Serif Pro (using Source Serif 4 which is the updated version) // Used for headings, body text, and reading content const sourceSerif = Source_Serif_4({ subsets: ["latin"], variable: '--font-source-serif', display: 'swap', }) // Secondary typeface: Aspekta (self-hosted in public/fonts/) // Loaded via @font-face in globals.css — no Next.js font loader needed // Used for UI labels, nav, buttons, small utility text export const metadata: Metadata = { title: 'Greyhaven Design System', description: 'Visual Identity and Brand Guidelines - Greyhaven', generator: 'v0.app', icons: { icon: [ { url: '/icon-light-32x32.png', media: '(prefers-color-scheme: light)', }, { url: '/icon-dark-32x32.png', media: '(prefers-color-scheme: dark)', }, { url: '/icon.svg', type: 'image/svg+xml', }, ], apple: '/apple-icon.png', }, } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return ( {children} ) }