mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-05-09 02:51:46 +00:00
19 lines
305 B
TypeScript
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",
|
|
});
|