Update src/app/layout.tsx

This commit is contained in:
2026-02-24 17:24:47 +00:00
parent 0cbbc10d20
commit 7ad2e91f60

View File

@@ -4,9 +4,6 @@ import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { AudioPlayer } from "@/components/AudioPlayer";
// Create new file: src/components/AudioPlayer.tsx
const notoSans = Noto_Sans({
variable: "--font-noto-sans", subsets: ["latin"],
@@ -31,7 +28,6 @@ export default function RootLayout({
<body
className={`${notoSans.variable} ${inter.variable} antialiased`}
>
<AudioPlayer />
<Tag />
{children}