8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
|
|
import { Inter } from "next/font/google";
|
||
|
|
|
||
|
|
export const inter = Inter({
|
||
|
|
subsets: ["latin"],
|
||
|
|
display: "swap",
|
||
|
|
variable: "--font-inter",
|
||
|
|
});
|