4 Commits

Author SHA1 Message Date
a86a272704 Update src/app/page.tsx 2026-04-13 13:01:52 +00:00
8d92f060a1 Update src/app/page.tsx 2026-04-13 13:01:17 +00:00
603c0879db Merge version_1 into main
Merge version_1 into main
2026-04-13 12:37:43 +00:00
ecc762af9a Merge version_1 into main
Merge version_1 into main
2026-04-13 10:58:17 +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,21 @@ 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}
textboxLayout="default"
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"
@@ -98,6 +115,7 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
showRating={true}
testimonials={[
{ id: "1", name: "Sarah J.", handle: "@sarahkigali", testimonial: "Fresh, fast, and exactly what I needed for lunch.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-with-short-hair_273609-15371.jpg" },
{ id: "2", name: "Mark D.", handle: "@markfoodie", testimonial: "Best salad bowl in town. Great service!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-pretty-girl-taking-selfie_23-2148225700.jpg" },
@@ -105,7 +123,6 @@ export default function LandingPage() {
{ id: "4", name: "David L.", handle: "@davidkigali", testimonial: "Love the build-your-own options. Always fresh.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-pizza-side-view_23-2149872410.jpg" },
{ id: "5", name: "Chloe M.", handle: "@chloelunches", testimonial: "Quick service and really friendly staff.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-restaurant_23-2148006621.jpg" },
]}
showRating={true}
title="Customer Reviews"
description="See why our customers love our fresh, healthy bowls."
/>
@@ -127,23 +144,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>
);
}
}