Update src/app/layout.tsx

This commit is contained in:
2026-01-17 18:03:01 +00:00
parent 1933221504
commit fad8540a83

View File

@@ -1,11 +1,11 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Manrope } from "next/font/google"; import { Space_Grotesk } 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 manrope = Manrope({ const spaceGrotesk = Space_Grotesk({
variable: "--font-manrope", subsets: ["latin"], variable: "--font-space-grotesk", 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={manrope.variable} className={spaceGrotesk.variable}
> >
<Tag /> <Tag />
{children} {children}