Google Fonts
import { Inter } from "next/font/google";
const inter = Inter({ subsets: ["latin"] });
/* ... */
<body className={inter.className}>
<Providers>{children}</Providers>
</body>
import { Outfit } from "next/font/google";
const outfit = Outfit({ subsets: ["latin"] });
/* ... */
<body className={outfit.className}>
<Providers>{children}</Providers>
</body>
Last updated