import localFont from "next/font/local"; // --- Sans Series --- export const zenoSansText = localFont({ src: [ { path: "./dist/ZenoSansText.woff2", weight: "100 900", style: "normal", }, { path: "./dist/ZenoSansTextItalic.woff2", weight: "100 900", style: "italic", }, ], variable: "--font-zeno-sans-text", display: "swap", }); export const zenoSansUI = localFont({ src: [ { path: "./dist/ZenoSansUI.woff2", weight: "100 900", style: "normal", }, { path: "./dist/ZenoSansUIItalic.woff2", weight: "100 900", style: "italic", }, ], variable: "--font-zeno-sans-ui", display: "swap", }); export const zenoSansDisplay = localFont({ src: [ { path: "./dist/ZenoSansDisplay.woff2", weight: "100 900", style: "normal", }, { path: "./dist/ZenoSansDisplayItalic.woff2", weight: "100 900", style: "italic", }, ], variable: "--font-zeno-sans-display", display: "swap", }); // --- Serif Series --- export const zenoSerifText = localFont({ src: [ { path: "./dist/ZenoSerifText.woff2", weight: "100 900", style: "normal", }, { path: "./dist/ZenoSerifTextItalic.woff2", weight: "100 900", style: "italic", }, ], variable: "--font-zeno-serif-text", display: "swap", }); export const zenoSerifDisplay = localFont({ src: [ { path: "./dist/ZenoSerifDisplay.woff2", weight: "100 900", style: "normal", }, { path: "./dist/ZenoSerifDisplayItalic.woff2", weight: "100 900", style: "italic", }, ], variable: "--font-zeno-serif-display", display: "swap", }); export const zenoSerifCaption = localFont({ src: [ { path: "./dist/ZenoSerifCaption.woff2", weight: "100 900", style: "normal", }, { path: "./dist/ZenoSerifCaptionItalic.woff2", weight: "100 900", style: "italic", }, ], variable: "--font-zeno-serif-caption", display: "swap", }); // --- Mono Series --- export const zenoMonoText = localFont({ src: [ { path: "./dist/ZenoMonoText.woff2", weight: "100 900", style: "normal", }, { path: "./dist/ZenoMonoTextItalic.woff2", weight: "100 900", style: "italic", }, ], variable: "--font-zeno-mono-text", display: "swap", }); export const zenoMonoCode = localFont({ src: [ { path: "./dist/ZenoMonoCode.woff2", weight: "100 900", style: "normal", }, { path: "./dist/ZenoMonoCodeItalic.woff2", weight: "100 900", style: "italic", }, ], variable: "--font-zeno-mono-code", display: "swap", }); export const zenoMonoTerminal = localFont({ src: [ { path: "./dist/ZenoMonoTerminal.woff2", weight: "100 900", style: "normal", }, { path: "./dist/ZenoMonoTerminalItalic.woff2", weight: "100 900", style: "italic", }, ], variable: "--font-zeno-mono-terminal", display: "swap", }); export const zenoMonoNerd = localFont({ src: [ { path: "./dist/ZenoMonoNerd.woff2", weight: "normal", style: "normal", }, { path: "./dist/ZenoMonoNerdItalic.woff2", weight: "normal", style: "italic", }, ], variable: "--font-zeno-mono-nerd", display: "swap", });