Merge version_5 into main #7

Merged
bender merged 1 commits from version_5 into main 2026-04-14 06:49:49 +00:00

View File

@@ -10,6 +10,7 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import { Disc, Music, Palette, Zap, PartyPopper } from "lucide-react";
export default function LandingPage() {
@@ -30,16 +31,12 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home", id: "hero"},
{
name: "About", id: "about"},
{
name: "Features", id: "features"},
{
name: "Testimonials", id: "testimonials"},
{
name: "Contact", id: "contact"},
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Events", id: "events" },
{ name: "Features", id: "features" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
brandName="PulseConnect"
/>
@@ -50,10 +47,8 @@ export default function LandingPage() {
logoText="PulseConnect"
description="The ultimate nexus for DJs, visual artists, and event visionaries. Sync your creativity, find your stage, and light up the night."
buttons={[
{
text: "Get Started", href: "#contact"},
{
text: "Explore Features", href: "#features"},
{ text: "Get Started", href: "#contact" },
{ text: "Explore Features", href: "#features" },
]}
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"
@@ -61,6 +56,22 @@ export default function LandingPage() {
/>
</div>
<div id="events" data-section="events">
<ProductCardTwo
title="Upcoming Featured Events"
description="Discover the latest showcases managed by our elite team of event visionaries."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
products={[
{ id: "e1", brand: "NeonWave", name: "Techno Underground Night", price: "$25", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/night-party-lights-stage_23-2148443907.jpg" },
{ id: "e2", brand: "PulseBeats", name: "Rhythm Sync Festival", price: "$45", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/dj-performance-night-club_23-2149176403.jpg" },
{ id: "e3", brand: "VibeProduction", name: "Laser Fusion Showcase", price: "$30", rating: 4, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/abstract-neon-lights-night-party_23-2149176406.jpg" }
]}
/>
</div>
<div id="about" data-section="about">
<MediaAbout
useInvertedBackground={true}
@@ -77,33 +88,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
features={[
{
title: "Pro DJ Consoles", description: "Access integrated booking for elite-tier DJ equipment and sound rigs.", icon: Disc,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/professional-dj-mixing-music-nightclub-controller_23-2149176398.jpg", imageAlt: "DJ Controller"},
{
imageSrc: "http://img.b2bpic.net/free-photo/night-party-lights-stage_23-2148443907.jpg", imageAlt: "Party Lighting"},
],
},
{
title: "Live Event Vibes", description: "Real-time visual and audio synchronization for unforgettable party experiences.", icon: PartyPopper,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/people-dancing-nightclub-party-with-neon-lights_23-2149176387.jpg", imageAlt: "Dancing Crowd"},
{
imageSrc: "http://img.b2bpic.net/free-photo/dj-performance-night-club_23-2149176403.jpg", imageAlt: "Party Atmosphere"},
],
},
{
title: "Creative Visuals", description: "Connect with VJs and light designers to craft stunning stages.", icon: Palette,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/abstract-neon-lights-night-party_23-2149176406.jpg", imageAlt: "Visuals"},
{
imageSrc: "http://img.b2bpic.net/free-photo/dj-decks-close-up_23-2149176410.jpg", imageAlt: "Mixing"},
],
},
{ title: "Pro DJ Consoles", description: "Access integrated booking for elite-tier DJ equipment and sound rigs.", icon: Disc, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/professional-dj-mixing-music-nightclub-controller_23-2149176398.jpg", imageAlt: "DJ Controller" }, { imageSrc: "http://img.b2bpic.net/free-photo/night-party-lights-stage_23-2148443907.jpg", imageAlt: "Party Lighting" }] },
{ title: "Live Event Vibes", description: "Real-time visual and audio synchronization for unforgettable party experiences.", icon: PartyPopper, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/people-dancing-nightclub-party-with-neon-lights_23-2149176387.jpg", imageAlt: "Dancing Crowd" }, { imageSrc: "http://img.b2bpic.net/free-photo/dj-performance-night-club_23-2149176403.jpg", imageAlt: "Party Atmosphere" }] },
{ title: "Creative Visuals", description: "Connect with VJs and light designers to craft stunning stages.", icon: Palette, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/abstract-neon-lights-night-party_23-2149176406.jpg", imageAlt: "Visuals" }, { imageSrc: "http://img.b2bpic.net/free-photo/dj-decks-close-up_23-2149176410.jpg", imageAlt: "Mixing" }] },
]}
title="Engineered for Epic Nights"
description="Everything you need from high-end gear to expert collaborators to make every party a landmark event."
@@ -114,8 +101,7 @@ export default function LandingPage() {
<SocialProofOne
textboxLayout="default"
useInvertedBackground={true}
names={[
"PulseBeats", "NeonWave", "VibeProduction", "RhythmSync", "StellarEvent", "SoundCraft", "BeatMakerStudio"]}
names={["PulseBeats", "NeonWave", "VibeProduction", "RhythmSync", "StellarEvent", "SoundCraft", "BeatMakerStudio"]}
title="Loved by Party Promoters"
description="The preferred platform for those who demand world-class sound and visuals."
/>
@@ -134,14 +120,8 @@ export default function LandingPage() {
{ value: "98%", label: "Satisfaction" }
]}
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"
}
{ 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" }
]}
/>
</div>
@@ -163,18 +143,8 @@ export default function LandingPage() {
<FooterBaseReveal
logoText="PulseConnect"
columns={[
{
title: "Platform", items: [
{ label: "Events", href: "#" },
{ label: "DJs", href: "#" }
]
},
{
title: "Support", items: [
{ label: "Contact", href: "#contact" },
{ label: "Terms", href: "#" }
]
}
{ title: "Platform", items: [{ label: "Events", href: "#events" }, { label: "DJs", href: "#" }] },
{ title: "Support", items: [{ label: "Contact", href: "#contact" }, { label: "Terms", href: "#" }] }
]}
copyrightText="© 2025 PulseConnect. All Rights Reserved."
/>
@@ -182,4 +152,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}