Merge version_1 into main #16

Merged
bender merged 1 commits from version_1 into main 2026-04-01 07:47:30 +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,91 +8,71 @@ 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 { Phone } from 'lucide-react';
const navItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
];
import { ArrowRight, Mail } from 'lucide-react';
export default function Page() {
const navItems = [
{ name: "Home", id: "/" },
];
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} />
</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 Vision"
description="High-performance, scalable, and beautifully designed web solutions for the modern era."
background={{ variant: "animated-grid" }}
/>
</div>
<div id="about" data-section="about">
<MetricSplitMediaAbout
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" }]}
title="Innovation at Heart"
description="We focus on delivering high-impact results through cutting-edge technology and clean, scalable code."
metrics={[{ value: "10+", title: "Years Experience" }, { value: "500+", title: "Projects Delivered" }]}
mediaAnimation="slide-up"
metricsAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="menu" data-section="menu">
<ProductCardTwo
title="Our Signature Menu"
description="Hand-crafted flavors for the bold."
gridVariant="uniform-all-items-equal"
title="Our Services"
description="Explore our curated range of professional development services."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
products={[
{ 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" }
{ id: "1", brand: "Web", name: "Custom App", price: "$99", rating: 5, reviewCount: "10", imageSrc: "https://images.unsplash.com/photo-1555066931-4365d14bab8c" },
{ id: "2", brand: "Web", name: "Design System", price: "$199", rating: 5, reviewCount: "20", imageSrc: "https://images.unsplash.com/photo-1581291518857-4e27b48ff24e" },
{ id: "3", brand: "Web", name: "Audit", price: "$299", rating: 4, reviewCount: "15", imageSrc: "https://images.unsplash.com/photo-1517694712202-14dd9538aa97" }
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
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"
}]}
title="Client Success"
description="See how we empower businesses to scale and succeed."
textboxLayout="default"
description="Customer reviews"
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Jane Doe", date: "2024", title: "CEO", quote: "Exceptional work, delivered on time and exceeded expectations.", tag: "Top", avatarSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330" },
{ id: "2", name: "John Smith", date: "2024", title: "CTO", quote: "A truly professional experience from start to finish.", tag: "Expert", avatarSrc: "https://images.unsplash.com/photo-1535713875002-d1d0cf377fde" }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactFaq
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}
faqs={[{ id: "1", title: "How do we start?", content: "Simply reach out via our contact form." }]}
ctaTitle="Ready to work?"
ctaDescription="Contact our team for a personalized consultation today."
ctaButton={{ text: "Get in touch", href: "mailto:hello@webild.com" }}
ctaIcon={Mail}
animationType="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Vibes on Main"
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] }]}
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]}
/>
</div>
</ThemeProvider>