Update src/app/layout.tsx

This commit is contained in:
2026-03-08 11:47:59 +00:00
parent f9656314e5
commit b4280bcda6

View File

@@ -1,7 +1,4 @@
import type { Metadata } from "next";
import { ThemeProvider as RootThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { ServiceWrapper } from "@/providers/ServiceWrapper";
import { Tag } from "@/components/tag/Tag";
import "./globals.css";
import { DM_Sans } from "next/font/google";
@@ -21,10 +18,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<body className={`${dmSans.variable} antialiased`}>
<ServiceWrapper>
<Tag />
{children}
</ServiceWrapper>
{children}
<script>
{`
(function() {
@@ -1407,4 +1401,4 @@ export default function RootLayout({
</body>
</html>
);
}
}