Update src/app/layout.tsx

This commit is contained in:
2025-12-28 07:26:46 +00:00
parent 332cb59c92
commit 3df0cbf2ab

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",
@@ -32,13 +30,9 @@ export default function RootLayout({
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={inter.variable}
>
<Tag />
{children}
<body className={inter.variable}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1257,7 +1251,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}