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