Update theme fonts

This commit is contained in:
2026-06-10 08:15:58 +00:00
parent e36efad300
commit c83d0aabd9

View File

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