mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-06-09 23:06:01 +00:00
11 lines
243 B
TypeScript
11 lines
243 B
TypeScript
import { Golos_Text } from "next/font/google";
|
|
|
|
export const inter = Golos_Text({
|
|
subsets: ["latin"],
|
|
display: "swap",
|
|
variable: "--font-inter",
|
|
fallback: ["ui-sans-serif", "system-ui"],
|
|
weight: ["500", "600", "700"],
|
|
preload: true,
|
|
});
|