Merge version_2 into main #3

Merged
bender merged 1 commits from version_2 into main 2026-04-13 13:01:21 +00:00

View File

@@ -5,9 +5,10 @@ import ReactLenis from "lenis/react";
import { CheckCircle } from "lucide-react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
@@ -31,6 +32,7 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "#hero" },
{ name: "Menu", id: "#menu" },
{ name: "Pricing", id: "#pricing" },
{ name: "How It Works", id: "#how-it-works" },
{ name: "Reviews", id: "#reviews" },
{ name: "Contact", id: "#contact" },
@@ -78,6 +80,20 @@ export default function LandingPage() {
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardOne
title="Our Pricing"
description="Simple, transparent pricing for all our signature bowls."
animationType="slide-up"
useInvertedBackground={false}
plans={[
{ id: "1", badge: "Essential", price: "5,000 RWF", subtitle: "Base Bowl", features: ["Choice of 1 base", "Choice of 3 toppings", "Choice of 1 sauce"] },
{ id: "2", badge: "Popular", price: "8,000 RWF", subtitle: "Protein Bowl", features: ["Includes 1 Premium Protein", "Choice of base", "Choice of 5 toppings", "Choice of 2 sauces"] },
{ id: "3", badge: "Premium", price: "12,000 RWF", subtitle: "Deluxe Bowl", features: ["Double Protein", "Unlimited Toppings", "Signature Sauces", "Special Add-ons"] }
]}
/>
</div>
<div id="how-it-works" data-section="how-it-works">
<FeatureCardTwentySix
textboxLayout="default"
@@ -127,23 +143,27 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
<FooterSimple
className="pb-16 md:pb-0"
columns={[
{ items: [
{ label: "Call Now: 0780 021 898", href: "tel:0780021898" },
{ label: "Deco Center, KG 9 Ave, Kigali", href: "#" },
{ label: "Open daily until 23:00", href: "#" }
{ title: "Bowle Kigali", items: [
{ label: "Call: 0780 021 898", href: "tel:0780021898" },
{ label: "WhatsApp", href: "https://wa.me/250780021898" }
] },
{ items: [
{ label: "Menu", href: "#menu" },
{ label: "How It Works", href: "#how-it-works" },
{ label: "Reviews", href: "#reviews" }
{ title: "Location", items: [
{ label: "Deco Center, KG 9 Ave" },
{ label: "Open daily until 23:00" }
] }
]}
logoText="Bowle"
bottomLeftText="© 2024 Bowle"
bottomRightText=""
/>
<div className="fixed bottom-0 left-0 right-0 p-4 md:hidden flex gap-4 bg-background/90 backdrop-blur z-50">
<a href="tel:0780021898" className="flex-1 py-3 text-center bg-primary text-white rounded-lg font-bold">Call</a>
<a href="https://wa.me/250780021898" className="flex-1 py-3 text-center bg-green-600 text-white rounded-lg font-bold">WhatsApp</a>
</div>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}