Update theme fonts

This commit is contained in:
2026-03-04 07:47:07 +00:00
parent f340ba7d4f
commit 5fc65a341a

View File

@@ -23,14 +23,11 @@ export const metadata: Metadata = {
},
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
@@ -40,7 +37,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<body className={`${inter.variable} antialiased`}>
<Tag />
{children}