65 lines
1.4 KiB
JavaScript
65 lines
1.4 KiB
JavaScript
import localFont from "next/font/local";
|
|
|
|
export const GeistMonoNonVariable = localFont({
|
|
src: [
|
|
{
|
|
path: "./fonts/geist-mono/GeistMono-Thin.woff2",
|
|
weight: "100",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "./fonts/geist-mono/GeistMono-UltraLight.woff2",
|
|
weight: "200",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "./fonts/geist-mono/GeistMono-Light.woff2",
|
|
weight: "300",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "./fonts/geist-mono/GeistMono-Regular.woff2",
|
|
weight: "400",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "./fonts/geist-mono/GeistMono-Medium.woff2",
|
|
weight: "500",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "./fonts/geist-mono/GeistMono-SemiBold.woff2",
|
|
weight: "600",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "./fonts/geist-mono/GeistMono-Bold.woff2",
|
|
weight: "700",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "./fonts/geist-mono/GeistMono-Black.woff2",
|
|
weight: "800",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "./fonts/geist-mono/GeistMono-UltraBlack.woff2",
|
|
weight: "900",
|
|
style: "normal",
|
|
},
|
|
],
|
|
variable: "--font-geist-mono-non-variable",
|
|
adjustFontFallback: false,
|
|
fallback: [
|
|
"ui-monospace",
|
|
"SFMono-Regular",
|
|
"Roboto Mono",
|
|
"Menlo",
|
|
"Monaco",
|
|
"Liberation Mono",
|
|
"DejaVu Sans Mono",
|
|
"Courier New",
|
|
"monospace",
|
|
],
|
|
});
|