Update theme fonts

This commit is contained in:
2026-05-10 18:22:50 +00:00
parent 381c8a94c9
commit 74c3562e23

View File

@@ -9,6 +9,7 @@ import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Roboto } from "next/font/google";
import { Mulish } from "next/font/google";
@@ -24,10 +25,14 @@ export const metadata: Metadata = {
const roboto = Roboto({
variable: "--font-roboto",
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export default function RootLayout({
@@ -38,7 +43,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.variable} antialiased`}>
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script