Files
openmonetis/public/fonts/font_index.ts
2026-04-03 18:10:16 +00:00

19 lines
305 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",
});