|
|
|
@@ -2,15 +2,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
import ReactLenis from "lenis/react";
|
|
|
|
import ReactLenis from "lenis/react";
|
|
|
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
|
|
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
|
|
|
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
|
|
|
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
|
|
|
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
|
|
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
|
|
|
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
|
|
|
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
|
|
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
|
|
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
|
|
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
|
|
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
|
|
|
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
|
|
|
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
|
|
|
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
|
|
|
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
|
|
|
import { Music, Calendar } from "lucide-react";
|
|
|
|
import { Music, Calendar, Phone, MapPin } from "lucide-react";
|
|
|
|
|
|
|
|
|
|
|
|
export default function LandingPage() {
|
|
|
|
export default function LandingPage() {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
@@ -117,27 +117,31 @@ export default function LandingPage() {
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div id="contact" data-section="contact">
|
|
|
|
<div id="contact" data-section="contact">
|
|
|
|
<ContactSplitForm
|
|
|
|
<ContactCTA
|
|
|
|
useInvertedBackground={true}
|
|
|
|
tag="Visit Us"
|
|
|
|
title="Find Your Oasis"
|
|
|
|
title="Find Your Oasis"
|
|
|
|
description="Located in Woodvale Grove, Nairobi. Call us on 0723 369162 for reservations and inquiries."
|
|
|
|
description="Join us at Woodvale Grove, Nairobi. Experience tropical hospitality at its finest. For bookings, reach us anytime via phone or email."
|
|
|
|
inputs={[
|
|
|
|
buttons={[
|
|
|
|
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
|
|
|
{ text: "Call: 0723 369162", href: "tel:0723369162" },
|
|
|
|
{ name: "email", type: "email", placeholder: "Your Email", required: true },
|
|
|
|
{ text: "Get Directions", href: "https://maps.google.com" }
|
|
|
|
]}
|
|
|
|
]}
|
|
|
|
textarea={{ name: "message", placeholder: "Your Reservation Request", rows: 4, required: true }}
|
|
|
|
background={{ variant: "sparkles-gradient" }}
|
|
|
|
imageSrc="http://img.b2bpic.net/free-photo/restaurant-luxury-interior-design-dark-lightning_114579-2492.jpg"
|
|
|
|
useInvertedBackground={true}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div id="footer" data-section="footer">
|
|
|
|
<div id="footer" data-section="footer">
|
|
|
|
<FooterLogoReveal
|
|
|
|
<FooterSimple
|
|
|
|
logoText="Bahama Breeze Ke"
|
|
|
|
columns={[
|
|
|
|
leftLink={{ text: "Call: 0723 369162", href: "tel:0723369162" }}
|
|
|
|
{ title: "Location", items: [{ label: "Woodvale Grove, Nairobi" }, { label: "Open Daily: 10am - 12am" }] },
|
|
|
|
rightLink={{ text: "Directions: Woodvale Grove", href: "https://maps.google.com" }}
|
|
|
|
{ title: "Contact", items: [{ label: "0723 369162", href: "tel:0723369162" }, { label: "info@bahamabreeze.ke", href: "mailto:info@bahamabreeze.ke" }] },
|
|
|
|
|
|
|
|
{ title: "Quick Links", items: [{ label: "Reserve a Table", href: "#contact" }, { label: "View Menu", href: "#menu" }] },
|
|
|
|
|
|
|
|
]}
|
|
|
|
|
|
|
|
bottomLeftText="© 2024 Bahama Breeze Ke"
|
|
|
|
|
|
|
|
bottomRightText="Tropical Vibes Only"
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</ReactLenis>
|
|
|
|
</ReactLenis>
|
|
|
|
</ThemeProvider>
|
|
|
|
</ThemeProvider>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|