Update theme fonts

This commit is contained in:
2026-04-22 12:07:54 +00:00
parent 2b253ea67f
commit ea91e1bed2

View File

@@ -8,6 +8,7 @@ import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Montserrat } from "next/font/google";
import { Poppins } from "next/font/google";
import { Mulish } from "next/font/google";
@@ -22,10 +23,10 @@ export const metadata: Metadata = {
};
const poppins = Poppins({
variable: "--font-poppins",
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
@@ -36,7 +37,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${poppins.variable} antialiased`}>
<body className={`${mulish.variable} antialiased`}>
<Tag />
{children}
<script