Files
openmonetis/public/fonts/font_index.ts
2026-03-13 18:21:01 +00:00

26 lines
439 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",
},
{
path: "./america-bold.woff2",
weight: "700",
style: "normal",
},
],
display: "swap",
variable: "--font-america",
});
export const americaFontVariable = america.variable;