Update src/app/layout.tsx

This commit is contained in:
2025-12-28 07:21:42 +00:00
parent a4f00053bf
commit ad153097b6

View File

@@ -1,13 +1,12 @@
import type { Metadata } from "next";
import { Merriweather } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const merriweather = Merriweather({
variable: "--font-merriweather",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
weight: ["300", "400", "700", "900"],
});
export const metadata: Metadata = {
@@ -35,7 +34,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={merriweather.variable}
className={inter.variable}
>
<Tag />
{children}