Update theme fonts

This commit is contained in:
2026-04-11 11:20:29 +00:00
parent 41aebc05d4
commit 14cc144c35

View File

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