Update src/app/layout.tsx

This commit is contained in:
2026-04-22 17:03:30 +00:00
parent 8243e58eec
commit abf1eedf5f

View File

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