Update theme fonts

This commit is contained in:
2026-04-12 21:47:00 +00:00
parent d4657c6c88
commit 3f376fba8b

View File

@@ -17,12 +17,13 @@ export const metadata: Metadata = {
};
const inter = Inter({
variable: "--font-inter",
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -34,7 +35,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script