8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
import localFont from "next/font/local";
|
|
|
|
export const inter = localFont({
|
|
display: "swap",
|
|
preload: true,
|
|
src: "../../public/fonts/Inter.woff2",
|
|
variable: "--font-inter",
|
|
});
|