58 lines
1.5 KiB
TypeScript
58 lines
1.5 KiB
TypeScript
import type { Metadata } from 'next'
|
|
import { Source_Serif_4, Inter } 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: Inter (Aspekta alternative from Google Fonts)
|
|
// Aspekta is the brand typeface, Inter is a suitable system alternative
|
|
// Used for UI labels, nav, buttons, small utility text
|
|
const inter = Inter({
|
|
subsets: ["latin"],
|
|
variable: '--font-inter',
|
|
display: 'swap',
|
|
})
|
|
|
|
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 (
|
|
<html lang="en" className={`${sourceSerif.variable} ${inter.variable}`}>
|
|
<body className="font-sans antialiased bg-background text-foreground">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|