mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 11:05:25 -04:00
18 lines
414 B
TypeScript
18 lines
414 B
TypeScript
import localFont from "next/font/local";
|
|
|
|
const GeistSans = localFont({
|
|
src: "../../../../node_modules/geist/dist/fonts/geist-sans/Geist-Variable.woff2",
|
|
weight: "100 900",
|
|
style: "normal",
|
|
display: "swap",
|
|
fallback: [
|
|
// https://github.com/system-fonts/modern-font-stacks#system-ui
|
|
"system-ui",
|
|
"sans-serif",
|
|
],
|
|
adjustFontFallback: false,
|
|
preload: true,
|
|
});
|
|
|
|
export default GeistSans;
|