Update src/app/layout.tsx

This commit is contained in:
2026-01-20 10:30:26 +00:00
parent 40a23e2ea8
commit fc9de42ecb

View File

@@ -1,11 +1,11 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Space_Grotesk } 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 spaceGrotesk = Space_Grotesk({ const inter = Inter({
variable: "--font-space-grotesk", subsets: ["latin"], variable: "--font-inter", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
@@ -36,7 +36,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={spaceGrotesk.variable} className={inter.variable}
> >
<Tag /> <Tag />
{children} {children}
@@ -1262,4 +1262,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }