Files
openmonetis/public/fonts/font_index.ts
2026-03-14 18:35:39 +00:00

21 lines
374 B
TypeScript

import localFont from "next/font/local";
export const america = localFont({
src: [
{
path: "./america-regular.woff2",
weight: "400",
style: "normal",
},
// {
// path: "./america-medium.woff2",
// weight: "500",
// style: "normal",
// },
],
display: "swap",
variable: "--font-america",
});
export const americaFontVariable = america.variable;