Some checks failed
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Has been cancelled
26 lines
607 B
TypeScript
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(" ");
|