Update theme fonts

This commit is contained in:
2026-06-12 10:35:33 +00:00
parent 49c92bb60f
commit e5c78ca4c7

View File

@@ -24,8 +24,13 @@ export const metadata: Metadata = {
const manrope = Manrope({
variable: "--font-manrope",
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -37,7 +42,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
{children}
<script