Merge version_2 into main #3

Merged
bender merged 1 commits from version_2 into main 2026-03-08 16:53:14 +00:00

View File

@@ -2,8 +2,6 @@ import type { Metadata } from "next";
import localFont from "next/font/local";
import "./styles/variables.css";
import "./styles/base.css";
import { ServiceWrapper } from "@/providers";
import { Tag } from "@/components";
const geistSans = localFont({
src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"});
@@ -38,11 +36,11 @@ export default function RootLayout({
}}
/>
</head>
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`} suppressHydrationWarning>
<ServiceWrapper>
<Tag />
{children}
</ServiceWrapper>
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
suppressHydrationWarning
>
{children}
<script
dangerouslySetInnerHTML={{