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