Update src/app/layout.tsx

This commit is contained in:
2026-01-02 22:18:05 +00:00
parent 6848704daa
commit 02e6d68d42

View File

@@ -1,11 +1,11 @@
import type { Metadata } from "next";
import { Source_Serif_4 } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const sourceSerif4 = Source_Serif_4({
variable: "--font-source-serif-4",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -49,7 +49,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${sourceSerif4.variable} antialiased`}
className={`${inter.variable} antialiased`}
>
<Tag />
{children}
@@ -1275,4 +1275,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}