13 lines
263 B
TypeScript
13 lines
263 B
TypeScript
import { Inter, Roboto_Mono } from "next/font/google"
|
|
|
|
export const inter = Inter({
|
|
subsets: ["latin"],
|
|
variable: "--font-inter",
|
|
weight: ["400", "500"],
|
|
})
|
|
|
|
export const robotoMono = Roboto_Mono({
|
|
subsets: ["latin"],
|
|
variable: "--font-roboto-mono",
|
|
})
|