Update theme fonts

This commit is contained in:
2026-02-19 12:30:33 +00:00
parent c5138b585f
commit 2f7cd9299e

View File

@@ -52,6 +52,11 @@ const outfit = Outfit({
subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -60,7 +65,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${outfit.variable} antialiased`}>
<body className={`${figtree.variable} antialiased`}>
<Tag />
{children}