Update theme fonts

This commit is contained in:
2026-05-26 20:09:29 +00:00
parent 310283daf1
commit 30044c4e14

View File

@@ -44,14 +44,11 @@ export const metadata: Metadata = {
};
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
@@ -61,7 +58,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<body className={`${manrope.variable} antialiased`}>
<Tag />
{children}
<script