Update src/app/xalphyn/page.tsx

This commit is contained in:
2026-04-21 20:26:55 +00:00
parent 791a2d6457
commit 876515d52e

View File

@@ -2,12 +2,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FaqBase from '@/components/sections/faq/FaqBase';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FaqBase from '@/components/sections/faq/FaqBase';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
export default function LandingPage() {
export default function XalphynPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
@@ -22,83 +22,47 @@ export default function LandingPage() {
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "XALPHYN",
id: "/xalphyn",
},
]}
brandName="SYNTHBEATSWAVES"
button={{
text: "Get Access",
href: "#contact",
}}
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "XALPHYN", id: "/xalphyn" },
]}
brandName="SYNTHBEATSWAVES"
button={{ text: "Get Access", href: "#contact" }}
/>
</div>
<div id="xalphyn-intro" data-section="xalphyn-intro">
<InlineImageSplitTextAbout
useInvertedBackground={false}
heading={[
{
type: "text",
content: "XALPHYN: Architect of SynthBeatsWaves",
},
]}
buttons={[
{
text: "Connect on Discord",
},
]}
/>
</div>
<div id="xalphyn-intro" data-section="xalphyn-intro">
<InlineImageSplitTextAbout
useInvertedBackground={false}
heading={[{ type: "text", content: "XALPHYN: Architect of SynthBeatsWaves" }]}
buttons={[{ text: "Connect on Discord" }]}
/>
</div>
<div id="xalphyn-vision" data-section="xalphyn-vision">
<FaqBase
textboxLayout="default"
useInvertedBackground={true}
faqs={[
{
id: "f1",
title: "Who is XALPHYN?",
content: "A visionary creator blending sound and vision.",
},
{
id: "f2",
title: "Vision",
content: "Evolving into full 3D cinematic storytelling.",
},
{
id: "f3",
title: "Philosophy",
content: "I don't just make music, I create atmospheres.",
},
]}
title="Artist Identity"
description="Blends emotion, AI, and sound in a digital rebellion."
faqsAnimation="blur-reveal"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="SYNTHBEATSWAVES"
leftLink={{
text: "YouTube",
href: "https://youtube.com",
}}
rightLink={{
text: "Instagram",
href: "https://instagram.com",
}}
/>
</div>
<div id="xalphyn-vision" data-section="xalphyn-vision">
<FaqBase
textboxLayout="default"
useInvertedBackground={true}
faqs={[
{ id: "f1", title: "Who is XALPHYN?", content: "A visionary creator blending sound and vision." },
{ id: "f2", title: "Vision", content: "Evolving into full 3D cinematic storytelling." },
{ id: "f3", title: "Philosophy", content: "I don't just make music, I create atmospheres." }
]}
title="Artist Identity"
description="Blends emotion, AI, and sound in a digital rebellion."
faqsAnimation="blur-reveal"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="SYNTHBEATSWAVES"
leftLink={{ text: "YouTube", href: "https://youtube.com" }}
rightLink={{ text: "Instagram", href: "https://instagram.com" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);