Merge version_3 into main #3

Merged
development merged 2 commits from version_3 into main 2025-12-28 07:26:52 +00:00
Showing only changes of commit 3df0cbf2ab - Show all commits

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>
);
}