Update src/app/layout.tsx

This commit is contained in:
2026-01-22 20:52:03 +00:00
parent 4533e67c86
commit b119713c1c

View File

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