Update src/app/layout.tsx

This commit is contained in:
2026-02-24 17:28:35 +00:00
parent 698a3735a6
commit 54497158b0

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 { BackgroundLofiMusicPlayer } from "@/components/BackgroundLofiMusicPlayer";
// Create the BackgroundLofiMusicPlayer component file at src/components/BackgroundLofiMusicPlayer.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`}
>
<BackgroundLofiMusicPlayer />
<Tag />
{children}