Update theme fonts

This commit is contained in:
2026-02-19 12:50:44 +00:00
parent e2081e57a8
commit c026c994a5

View File

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