Update tailwind fonts

This commit is contained in:
adilallo
2025-08-23 17:03:58 -06:00
parent 3c7f826f5e
commit 76d747a557
2 changed files with 15 additions and 4 deletions
+6 -3
View File
@@ -5,25 +5,28 @@ import Footer from "./components/Footer";
const inter = Inter({
subsets: ["latin"],
weight: ["400", "500"],
weight: ["400", "500", "600", "700"],
variable: "--font-inter",
display: "swap",
});
const bricolageGrotesque = Bricolage_Grotesque({
subsets: ["latin"],
weight: ["400", "500", "700"],
weight: ["400", "500", "700", "800"],
variable: "--font-bricolage-grotesque",
display: "swap",
});
const spaceGrotesk = Space_Grotesk({
subsets: ["latin"],
weight: ["400", "500", "700"],
variable: "--font-space-grotesk",
display: "swap",
});
export default function RootLayout({ children }) {
return (
<html lang="en">
<html lang="en" className="font-sans">
<body
className={`${inter.variable} ${bricolageGrotesque.variable} ${spaceGrotesk.variable}`}
>