Typography
1) Change Font family over here (Globally): /app/layout.tsx
import { Geist } from "next/font/google";
const geist = Geist({
subsets: [["latin"],
display: "swap",
variable: "--font-geist",
});
<body className={`${geist.className}`}>
1) Change Font family over here (Globally): /app/layout.tsx
import { Geist } from "next/font/google";
const geist = Geist({
subsets: [["latin"],
display: "swap",
variable: "--font-geist",
});
<body className={`${geist.className}`}>