6 Commits

Author SHA1 Message Date
ad724ef3e6 Update src/app/page.tsx 2026-03-05 18:26:36 +00:00
cf53f9b3b9 Update src/app/layout.tsx 2026-03-05 18:26:35 +00:00
a7a0e1164b Merge version_2 into main
Merge version_2 into main
2026-03-05 18:25:03 +00:00
7e13f0b08c Update src/app/page.tsx 2026-03-05 18:24:59 +00:00
4691674236 Update src/app/layout.tsx 2026-03-05 18:24:57 +00:00
44b73d449d Merge version_1 into main
Merge version_1 into main
2026-03-05 18:23:26 +00:00
2 changed files with 11 additions and 37 deletions

View File

@@ -1,45 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "@/styles/globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { 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: "Producer, songwriter, and artist creating innovative beats and memorable music. Explore my sound and join thousands of listeners worldwide."};
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"],
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1407,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -47,7 +47,7 @@ export default function LandingPage() {
tagIcon={Music} tagIcon={Music}
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[ buttons={[
{ text: "Listen Now", href: "https://spotify.com" }, { text: "Hear My Sound", href: "https://spotify.com" },
{ text: "Get in Touch", href: "contact" }, { text: "Get in Touch", href: "contact" },
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
@@ -93,7 +93,7 @@ export default function LandingPage() {
title: "Live Performance", description: "Dynamic stage presence and electrifying performances that connect with fans and create unforgettable moments.", imageSrc: "http://img.b2bpic.net/free-photo/rear-view-carefree-fans-having-fun-music-festival-front-illuminated-stage-night_637285-615.jpg" title: "Live Performance", description: "Dynamic stage presence and electrifying performances that connect with fans and create unforgettable moments.", imageSrc: "http://img.b2bpic.net/free-photo/rear-view-carefree-fans-having-fun-music-festival-front-illuminated-stage-night_637285-615.jpg"
}, },
]} ]}
title="My Musical Journey" title="My Creative Skills"
description="From beat production to mastering, discover the creative process behind every track." description="From beat production to mastering, discover the creative process behind every track."
tag="What I Do" tag="What I Do"
tagIcon={Sparkles} tagIcon={Sparkles}
@@ -178,4 +178,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }