From 469167423627ba62f4bfb22a911e6ab50644e3bc Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:24:57 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 40 +++++++--------------------------------- 1 file changed, 7 insertions(+), 33 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 703ceeb..1fc7600 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,45 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Luu Rackz | Music Producer & Artist", description: "Discover innovative beats, music production, and artistry from Luu Rackz. Stream original tracks on Spotify, Apple Music, and more.", keywords: "music producer, beats, hip-hop, electronic music, artist, songwriter, mixing, mastering", openGraph: { - title: "Luu Rackz | Music Producer & Artist", description: "Discover innovative beats, music production, and artistry from Luu Rackz.", siteName: "Luu Rackz", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/diverse-people-processing-mixing-sounds-audio-console_482257-122250.jpg", alt: "Luu Rackz Music Studio"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Luu Rackz | Music Producer & Artist", description: "Discover innovative beats and music from Luu Rackz.", images: ["http://img.b2bpic.net/free-photo/diverse-people-processing-mixing-sounds-audio-console_482257-122250.jpg"], - }, -}; + title: "Luu Rackz - Music Producer & Artist", description: "Producer, songwriter, and artist creating innovative beats and memorable music. Explore my sound and join thousands of listeners worldwide."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}