Update theme fonts

This commit is contained in:
2026-04-18 07:19:26 +00:00
parent 342962fab6
commit 6dfd0085ee

View File

@@ -8,6 +8,7 @@ import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Lato } from "next/font/google";
import { Nunito } from "next/font/google";
import { Mulish } from "next/font/google";
@@ -23,8 +24,9 @@ export const metadata: Metadata = {
};
const nunito = Nunito({
variable: "--font-nunito",
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
@@ -36,7 +38,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunito.variable} antialiased`}>
<body className={`${mulish.variable} antialiased`}>
<Tag />
{children}
<script