Update theme fonts

This commit is contained in:
2026-05-09 06:46:47 +00:00
parent 1f30c1efeb
commit 97b0a6c8b4

View File

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