Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #10.
This commit is contained in:
2026-04-01 07:26:24 +00:00

View File

@@ -1,4 +1,5 @@
'use client';
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
@@ -7,105 +8,72 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { ArrowRight } from 'lucide-react';
import { ArrowRight, Mail } from 'lucide-react';
export default function HomePage() {
export default function Page() {
const navItems = [
{ name: "Home", id: "/" }
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
];
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ThemeProvider>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={navItems}
brandName="Vibes on Main"
/>
<NavbarStyleCentered navItems={navItems} />
</div>
<div id="hero" data-section="hero">
<HeroBillboard
title="Vibes on Main"
description="Where music, food, and energy come together. From sunset brunches to late-night Amapiano — this is where Joburg comes alive."
title="Build Your Future"
description="Innovative solutions for modern businesses."
background={{ variant: "gradient-bars" }}
/>
</div>
<div id="about" data-section="about">
<MetricSplitMediaAbout
title="The Experience"
description="We curate unforgettable moments in the heart of Johannesburg."
metrics={[
{ value: "50+", title: "Events Monthly" },
{ value: "10k+", title: "Happy Guests" }
]}
mediaAnimation="blur-reveal"
metricsAnimation="blur-reveal"
useInvertedBackground={false}
title="Our Mission"
description="We strive for excellence in every project we undertake."
metrics={[{ value: "10+", title: "Years Experience" }, { value: "500+", title: "Projects Completed" }]}
/>
</div>
<div id="menu" data-section="menu">
<ProductCardTwo
title="Our Menu"
description="A fusion of local flavors and global culinary techniques."
gridVariant="uniform-all-items-equal"
animationType="blur-reveal"
textboxLayout="split"
title="Our Services"
description="Tailored solutions for your needs."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
products={[
{ id: "1", brand: "Signature", name: "Joburg Burger", price: "R150", rating: 5, reviewCount: "120", imageSrc: "https://images.unsplash.com/photo-1568901346375-23c9450c58cd" },
{ id: "2", brand: "Cocktails", name: "Sunset Spritz", price: "R95", rating: 4, reviewCount: "85", imageSrc: "https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b" },
{ id: "3", brand: "Platters", name: "Tapas Trio", price: "R210", rating: 5, reviewCount: "45", imageSrc: "https://images.unsplash.com/photo-1544148103-0773bf10d330" }
{ id: "1", brand: "Service", name: "Web Dev", price: "$99", rating: 5, reviewCount: "20", imageSrc: "https://picsum.photos/400/300" },
{ id: "2", brand: "Service", name: "Cloud Setup", price: "$199", rating: 5, reviewCount: "30", imageSrc: "https://picsum.photos/400/300" },
{ id: "3", brand: "Service", name: "Strategy", price: "$299", rating: 5, reviewCount: "40", imageSrc: "https://picsum.photos/400/300" }
]}
useInvertedBackground={false}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
title="Guest Stories"
description="What our community says about their time with us."
textboxLayout="split"
title="Client Reviews"
description="What our clients say about us."
textboxLayout="default"
testimonials={[
{ id: "1", name: "Thabo M.", date: "Jan 2025", title: "Amazing Vibe", quote: "The best nightlife spot in Joburg, hands down!", tag: "Regular", avatarSrc: "https://api.dicebear.com/7.x/avataaars/svg?seed=Thabo" },
{ id: "2", name: "Sarah J.", date: "Dec 2024", title: "Perfect Sunday", quote: "Sunset brunch was a highlight of my trip.", tag: "Visitor", avatarSrc: "https://api.dicebear.com/7.x/avataaars/svg?seed=Sarah" }
{ id: "1", name: "John Doe", date: "2023-01-01", title: "Excellent", quote: "Great results!", tag: "User", avatarSrc: "https://picsum.photos/50/50" },
{ id: "2", name: "Jane Smith", date: "2023-02-01", title: "Reliable", quote: "Saved us time.", tag: "User", avatarSrc: "https://picsum.photos/50/50" }
]}
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<ContactFaq
faqs={[
{ id: "1", title: "Do I need to book?", content: "For prime spots on weekends, we highly recommend booking in advance." },
{ id: "2", title: "Is there parking?", content: "Secure parking is available right outside the venue." }
]}
ctaTitle="Ready to join?"
ctaDescription="Get in touch or book your table now."
ctaButton={{ text: "Contact Us", href: "#contact" }}
ctaIcon={ArrowRight}
animationType="blur-reveal"
useInvertedBackground={false}
faqs={[{ id: "1", title: "How to start?", content: "Contact us today." }]}
ctaTitle="Let's Connect"
ctaDescription="We'd love to hear from you."
ctaButton={{ text: "Get in touch" }}
ctaIcon={Mail}
animationType="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
columns={[
{ title: "Menu", items: [{ label: "Food", href: "#menu" }, { label: "Drinks", href: "#menu" }] },
{ title: "Connect", items: [{ label: "Contact", href: "#contact" }] }
]}
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]}
/>
</div>
</ThemeProvider>