3 Commits

Author SHA1 Message Date
f527f289f3 Update src/app/page.tsx 2026-04-14 06:45:18 +00:00
485e1aacd3 Update src/app/page.tsx 2026-04-14 06:44:54 +00:00
8965179292 Merge version_2 into main
Merge version_2 into main
2026-04-14 06:43:07 +00:00

View File

@@ -2,14 +2,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroLogo from '@/components/sections/hero/HeroLogo'; import HeroLogo from '@/components/sections/hero/HeroLogo';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import { Disc, Music, Palette, Zap, PartyPopper } from "lucide-react"; import { Disc, Music, Palette, Zap, PartyPopper } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
@@ -55,23 +55,19 @@ export default function LandingPage() {
{ {
text: "Explore Features", href: "#features"}, text: "Explore Features", href: "#features"},
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/night-club-dj-playing-music-mixing-tracks-party_23-2149176395.jpg" imageSrc="http://img.b2bpic.net/free-photo/night-club-dj-playing-music-mixing-tracks-party_23-2149176395.jpg?_wi=1"
imageAlt="Professional DJ console at a party" imageAlt="Professional DJ console at a party"
showDimOverlay={true} showDimOverlay={true}
/> />
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
<InlineImageSplitTextAbout <MediaAbout
useInvertedBackground={true} useInvertedBackground={true}
heading={[ title="Where the Energy Comes Alive"
{ description="We provide the pulse for your production. Bringing together top-tier sound, lighting, and performance talent to create legendary club experiences."
type: "text", content: "Where the "}, imageSrc="http://img.b2bpic.net/free-photo/dj-mixes-music-nightclub_23-2149176392.jpg"
{ imageAlt="DJ Console"
type: "image", src: "http://img.b2bpic.net/free-photo/dj-mixes-music-nightclub_23-2149176392.jpg", alt: "DJ Console"},
{
type: "text", content: " Energy Comes Alive"},
]}
/> />
</div> </div>
@@ -126,40 +122,64 @@ export default function LandingPage() {
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen <TestimonialCardSixteen
title="Hear the Pulse"
description="Don't take our word for it—listen to the pros who run the scene."
useInvertedBackground={false} useInvertedBackground={false}
testimonial="PulseConnect bridged the gap between our visual team and local DJ talent perfectly. The event quality skyrocketed." animationType="depth-3d"
rating={5} textboxLayout="split"
author="DJ Nexus" kpiItems={[
avatars={[ { value: "500+", label: "Live Events" },
{ { value: "120+", label: "Elite DJs" },
src: "http://img.b2bpic.net/free-photo/smiling-dj-behind-mixer-console-nightclub_23-2149176391.jpg", alt: "DJ Avatar"}, { value: "98%", label: "Satisfaction" }
{ ]}
src: "http://img.b2bpic.net/free-photo/cheerful-woman-listening-music-with-headphones-nightclub_23-2149176389.jpg", alt: "Vibe Avatar"}, testimonials={[
{
id: "t1", name: "DJ Nexus", role: "Resident DJ", company: "Neon Nights", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-dj-behind-mixer-console-nightclub_23-2149176391.jpg"
},
{
id: "t2", name: "Sarah V", role: "Event Manager", company: "VibeProduction", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-listening-music-with-headphones-nightclub_23-2149176389.jpg"
}
]} ]}
ratingAnimation="blur-reveal"
avatarsAnimation="blur-reveal"
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCenter <ContactSplitForm
useInvertedBackground={true} useInvertedBackground={true}
background={{
variant: "sparkles-gradient"}}
tag="Book Your Night"
title="Ready to Light the Stage?" title="Ready to Light the Stage?"
description="Join the network that defines modern nightlife production." description="Submit your details to join the network that defines modern nightlife production."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name" },
{ name: "email", type: "email", placeholder: "Email Address" }
]}
imageSrc="http://img.b2bpic.net/free-photo/night-club-dj-playing-music-mixing-tracks-party_23-2149176395.jpg?_wi=2"
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterCard <FooterBaseReveal
logoText="PulseConnect" logoText="PulseConnect"
columns={[
{
title: "Platform", items: [
{ label: "Events", href: "#" },
{ label: "DJs", href: "#" }
]
},
{
title: "Support", items: [
{ label: "Contact", href: "#contact" },
{ label: "Terms", href: "#" }
]
}
]}
copyrightText="© 2025 PulseConnect. All Rights Reserved." copyrightText="© 2025 PulseConnect. All Rights Reserved."
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }