Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7e13f0b08c | |||
| 4691674236 | |||
| 44b73d449d |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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}
|
||||||
|
|||||||
Reference in New Issue
Block a user