You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
353 B
TypeScript
17 lines
353 B
TypeScript
// frontend/app/fonts.ts
|
|
import { Onest, DM_Mono } from "next/font/google";
|
|
|
|
export const onest = Onest({
|
|
subsets: ["latin"],
|
|
weight: ["400", "500", "600", "700", "800"],
|
|
variable: "--f-onest",
|
|
display: "swap",
|
|
});
|
|
|
|
export const dmMono = DM_Mono({
|
|
subsets: ["latin"],
|
|
weight: ["400", "500"],
|
|
variable: "--f-dmmono",
|
|
display: "swap",
|
|
});
|