GRV-Summit-Site/lib/fonts/hero.ts
kirukib f950545ae0
Some checks failed
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Has been cancelled
x
2026-06-08 16:08:42 +03:00

26 lines
607 B
TypeScript

import { DM_Sans, Playfair_Display, Syne } from "next/font/google";
/** Hero-only pairing — unchanged from pre-Antebas layout. */
export const heroDisplay = Syne({
subsets: ["latin"],
variable: "--font-hero-display",
weight: ["600", "700", "800"],
});
export const heroBody = DM_Sans({
subsets: ["latin"],
variable: "--font-hero-body",
});
export const heroSerif = Playfair_Display({
subsets: ["latin"],
variable: "--font-hero-serif",
weight: ["600", "700", "800"],
});
export const heroFontVariables = [
heroDisplay.variable,
heroBody.variable,
heroSerif.variable,
].join(" ");