Update src/app/layout.tsx

This commit is contained in:
2026-02-22 13:47:34 +00:00
parent c800fd9288
commit 6b70d7342a

View File

@@ -1,8 +1,6 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
@@ -31,11 +29,9 @@ export default function RootLayout({
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -1405,7 +1401,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}