Merge version_1 into main #13

Merged
bender merged 1 commits from version_1 into main 2026-04-01 07:39:26 +00:00

View File

@@ -1,5 +1,4 @@
"use client";
'use client';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
@@ -8,15 +7,15 @@ 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 { Mail } from 'lucide-react';
import { Phone } from 'lucide-react';
const navItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
];
export default function Page() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
];
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -35,62 +34,59 @@ export default function Page() {
</div>
<div id="hero" data-section="hero">
<HeroBillboard
title="Build Your Future"
description="Innovative solutions for modern businesses."
background={{ variant: "gradient-bars" }}
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."
background={{ variant: 'animated-grid' }}
/>
</div>
<div id="about" data-section="about">
<MetricSplitMediaAbout
title="Our Mission"
description="We strive for excellence in every project we undertake."
metrics={[{ value: "10+", title: "Years Experience" }, { value: "500+", title: "Projects Completed" }]}
useInvertedBackground={false}
title="The Heart of Joburg"
description="Experience the ultimate blend of culture and nightlife."
metrics={[{ value: "10K+", title: "Guests Monthly" }, { value: "50+", title: "Local DJs" }]}
mediaAnimation="slide-up"
metricsAnimation="slide-up"
/>
</div>
<div id="menu" data-section="menu">
<ProductCardTwo
title="Our Services"
description="Tailored solutions for your needs."
gridVariant="three-columns-all-equal-width"
title="Our Signature Menu"
description="Hand-crafted flavors for the bold."
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
products={[
{ 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" }
{ id: "1", brand: "Vibes", name: "Signature Burger", price: "R120", rating: 5, reviewCount: "200", imageSrc: "/images/burger.jpg" },
{ id: "2", brand: "Vibes", name: "Spicy Wings", price: "R95", rating: 4, reviewCount: "150", imageSrc: "/images/wings.jpg" },
{ id: "3", brand: "Vibes", name: "Classic Mojito", price: "R85", rating: 5, reviewCount: "300", imageSrc: "/images/cocktail.jpg" }
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
title="Client Reviews"
description="What our clients say about us."
title="What People Say"
testimonials={[{
id: "1", name: "Sarah M.", date: "2024-05-10", title: "Amazing Energy", quote: "The best vibe in Joburg, hands down!", tag: "Regular", avatarSrc: "/images/sarah.jpg"
}, {
id: "2", name: "Thabo K.", date: "2024-06-15", title: "Late Night Perfection", quote: "Amapiano hits different here.", tag: "Visitor", avatarSrc: "/images/thabo.jpg"
}]}
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{ 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" }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactFaq
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}
useInvertedBackground={false}
faqs={[{ id: "1", title: "Booking?", content: "Yes, contact us." }]}
ctaTitle="Reserve Your Table"
ctaDescription="Don't miss out on the next big night."
ctaButton={{ text: "Book Now", href: "/contact" }}
ctaIcon={Phone}
animationType="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]}
logoText="Vibes on Main"
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] }]}
/>
</div>
</ThemeProvider>