249 lines
14 KiB
TypeScript
249 lines
14 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
|
import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTestimonial";
|
|
import SplitAbout from "@/components/sections/about/SplitAbout";
|
|
import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern";
|
|
import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
|
|
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
|
|
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
|
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
|
import { Award, Calendar, ChefHat, Fish, Flame, Heart, MessageCircle, Moon, Sparkles, Users, Utensils, Wine, Zap } from "lucide-react";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="expand-hover"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="rounded"
|
|
contentWidth="compact"
|
|
sizing="medium"
|
|
background="grid"
|
|
cardStyle="gradient-radial"
|
|
primaryButtonStyle="primary-glow"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingOverlay
|
|
brandName="Kubec Bistro Bar"
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Menu", id: "menu" },
|
|
{ name: "Reviews", id: "testimonials" },
|
|
{ name: "Contact", id: "contact" },
|
|
]}
|
|
button={{
|
|
text: "Reserve Table", href: "#contact"}}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroBillboardTestimonial
|
|
title="Powai's Favorite Bistro & Seafood Dining Experience"
|
|
description="Discover premium seafood, vibrant ambience, and unforgettable dining moments. Open late for your perfect night out."
|
|
tag="Welcome to Kubec"
|
|
tagIcon={Sparkles}
|
|
tagAnimation="slide-up"
|
|
imageSrc="http://img.b2bpic.net/free-photo/burning-candle-table_140725-8115.jpg"
|
|
imageAlt="Kubec Bistro Bar dining ambience"
|
|
mediaAnimation="slide-up"
|
|
useInvertedBackground={false}
|
|
background={{ variant: "grid" }}
|
|
testimonials={[
|
|
{
|
|
name: "Priya Sharma", handle: "Regular Customer", testimonial: "From staff service to dishes taste everything is worthy of the money. Best seafood in Powai!", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/beauty-style-fashion-age-concept-close-up-portrait-positive-elegant-60-year-old-female-with-gray-hair-wrinkled-face-posing-against-white-brick-wall_344912-1854.jpg?_wi=1", imageAlt: "Priya Sharma"},
|
|
{
|
|
name: "Amit Patel", handle: "Corporate Professional", testimonial: "Good ambience, yummy food, nice place to hangout with friends. Perfect for late night gatherings.", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/man-welcomes-business-partners-negotiations_1163-5423.jpg?_wi=1", imageAlt: "Amit Patel"},
|
|
{
|
|
name: "Sneha Desai", handle: "Happy Hour Regular", testimonial: "Outstanding seafood selection and the staff makes you feel like family. Highly recommended!", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-smiling-kitchen_107420-12357.jpg?_wi=1", imageAlt: "Sneha Desai"},
|
|
]}
|
|
buttons={[
|
|
{ text: "Reserve Table", href: "#contact" },
|
|
{ text: "Call Now", href: "tel:08097703780" },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<SplitAbout
|
|
title="About Kubec Bistro Bar"
|
|
description="Since opening our doors in Powai, Kubec has become the go-to destination for seafood lovers and families seeking exceptional dining experiences. We combine fresh, premium ingredients with innovative cooking techniques to deliver unforgettable meals."
|
|
tag="Our Story"
|
|
tagIcon={Fish}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
imagePosition="right"
|
|
imageSrc="http://img.b2bpic.net/free-photo/portrait-handsome-successful-bearded-south-asian-young-indian-freelancer-blue-jeans-shirt-sitting-cafe-with-chicken-nuggets-lemonade_627829-5095.jpg"
|
|
imageAlt="Kubec Bistro Bar interior"
|
|
mediaAnimation="slide-up"
|
|
bulletPoints={[
|
|
{
|
|
title: "Fresh Seafood Daily", description: "Premium quality seafood sourced fresh to ensure the finest taste and texture in every dish.", icon: Fish,
|
|
},
|
|
{
|
|
title: "Vibrant Ambience", description: "Modern yet warm interior design that creates the perfect atmosphere for dining with friends and family.", icon: Sparkles,
|
|
},
|
|
{
|
|
title: "Family Friendly", description: "Welcoming space for families, friends, and corporate groups with excellent service and special packages.", icon: Users,
|
|
},
|
|
{
|
|
title: "Late Night Dining", description: "Open until 1:30 AM on most days, perfect for night owls and social gatherings.", icon: Moon,
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="menu" data-section="menu">
|
|
<FeatureHoverPattern
|
|
title="Menu Highlights"
|
|
description="Explore our signature dishes crafted with premium ingredients and culinary expertise"
|
|
tag="Popular Dishes"
|
|
tagIcon={ChefHat}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
animationType="slide-up"
|
|
features={[
|
|
{
|
|
icon: Zap,
|
|
title: "Paneer Tikka Trio", description: "Aromatic tandoori paneer skewers with traditional Indian spices and fresh mint chutney"},
|
|
{
|
|
icon: Flame,
|
|
title: "Chicken Adraki", description: "Tender chicken infused with fresh ginger and roasted spices, a signature house specialty"},
|
|
{
|
|
icon: Utensils,
|
|
title: "Bowl of Chili", description: "Delicious seafood and noodles in a fragrant spiced broth with fresh vegetables"},
|
|
{
|
|
icon: Heart,
|
|
title: "Murgh Malai Tikka", description: "Creamy tandoori chicken with rich malai sauce and aromatic spices, melt-in-mouth goodness"},
|
|
{
|
|
icon: Fish,
|
|
title: "Fresh Seafood Specials", description: "Daily catch prepared with traditional recipes showcasing premium quality and authentic flavors"},
|
|
{
|
|
icon: Wine,
|
|
title: "Premium Beverages", description: "Curated selection of drinks and cocktails perfect for every occasion and celebration"},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="why-choose" data-section="why-choose">
|
|
<MetricCardTwo
|
|
title="Why Choose Kubec"
|
|
description="Join thousands of satisfied customers who make Kubec their favorite dining destination"
|
|
tag="Trust & Quality"
|
|
tagIcon={Award}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
animationType="slide-up"
|
|
gridVariant="uniform-all-items-equal"
|
|
metrics={[
|
|
{ id: "1", value: "4.3★", description: "Google Rating from 900+ Reviews" },
|
|
{ id: "2", value: "12PM-1:30AM", description: "Extended Hours for Your Convenience" },
|
|
{ id: "3", value: "Fresh Daily", description: "Premium Seafood Sourced Fresh" },
|
|
{ id: "4", value: "Happy Hours", description: "Great Deals on Food & Beverages" },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardTen
|
|
title="What Our Customers Say"
|
|
description="Real feedback from our valued guests who visit us regularly"
|
|
tag="Customer Reviews"
|
|
tagIcon={MessageCircle}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
testimonials={[
|
|
{
|
|
id: "1", title: "Outstanding Seafood Quality", quote: "From staff service to dishes taste everything is worthy of the money. The seafood here is incredibly fresh and delicious. Best dining experience in Powai!", name: "Priya Sharma", role: "Regular Customer", imageSrc: "http://img.b2bpic.net/free-photo/beauty-style-fashion-age-concept-close-up-portrait-positive-elegant-60-year-old-female-with-gray-hair-wrinkled-face-posing-against-white-brick-wall_344912-1854.jpg?_wi=2", imageAlt: "Priya Sharma"},
|
|
{
|
|
id: "2", title: "Perfect for Friends Hangout", quote: "Good ambience, yummy food, nice place to hangout with friends. The atmosphere is welcoming and the service is top-notch. Highly recommended!", name: "Amit Patel", role: "Corporate Professional", imageSrc: "http://img.b2bpic.net/free-photo/man-welcomes-business-partners-negotiations_1163-5423.jpg?_wi=2", imageAlt: "Amit Patel"},
|
|
{
|
|
id: "3", title: "Family Favorite Restaurant", quote: "We've brought our entire family here multiple times. The menu variety is excellent, and they're very accommodating to families with kids.", name: "Sneha Desai", role: "Happy Hour Regular", imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-smiling-kitchen_107420-12357.jpg?_wi=2", imageAlt: "Sneha Desai"},
|
|
{
|
|
id: "4", title: "Late Night Dining Paradise", quote: "Open until late at night, perfect for our group gatherings. The food quality never disappoints no matter how late we come in.", name: "Rajesh Kumar", role: "IIT Bombay Student", imageSrc: "http://img.b2bpic.net/free-photo/smiling-professional-businesswoman_1163-5371.jpg", imageAlt: "Rajesh Kumar"},
|
|
{
|
|
id: "5", title: "Best Corporate Events Venue", quote: "Hosted our team celebration here and it was fantastic. The staff handled everything perfectly and the food was exceptional.", name: "Anjali Gupta", role: "Event Manager", imageSrc: "http://img.b2bpic.net/free-photo/young-man-pressing-his-lips-together-rubbing-hands_273609-12335.jpg", imageAlt: "Anjali Gupta"},
|
|
{
|
|
id: "6", title: "Worth Every Rupee", quote: "Great food, excellent service, perfect ambience. This is our go-to place for celebrations and casual dinners. Absolutely worth it!", name: "Vikram Singh", role: "Frequent Diner", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg", imageAlt: "Vikram Singh"},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="social-proof" data-section="social-proof">
|
|
<SocialProofOne
|
|
title="Trusted by Food Lovers Across Powai"
|
|
description="Join families, professionals, and students who choose Kubec for exceptional dining experiences"
|
|
tag="Community"
|
|
tagIcon={Users}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
names={[
|
|
"Family Dining Enthusiasts", "IIT Bombay Community", "Corporate Teams", "Birthday Celebrations", "Friend Groups", "Kitty Party Organizers", "Weekend Date Nights"]}
|
|
speed={40}
|
|
showCard={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactCenter
|
|
tag="Ready to Dine?"
|
|
title="Reserve Your Table Tonight"
|
|
description="Book your reservation now or call us directly. We're open from 12:00 PM to 1:30 AM daily."
|
|
tagIcon={Calendar}
|
|
tagAnimation="slide-up"
|
|
background={{ variant: "rotated-rays-animated" }}
|
|
useInvertedBackground={false}
|
|
inputPlaceholder="your@email.com"
|
|
buttonText="Get Reservation Link"
|
|
termsText="We'll send you a confirmation link to complete your reservation. Call 080977 03780 for immediate booking."
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBase
|
|
logoText="Kubec Bistro Bar"
|
|
copyrightText="© 2025 Kubec Bistro Bar. All rights reserved."
|
|
columns={[
|
|
{
|
|
title: "Quick Links", items: [
|
|
{ label: "Home", href: "/" },
|
|
{ label: "About Us", href: "#about" },
|
|
{ label: "Menu", href: "#menu" },
|
|
{ label: "Reviews", href: "#testimonials" },
|
|
],
|
|
},
|
|
{
|
|
title: "Contact", items: [
|
|
{ label: "Call: 080977 03780", href: "tel:08097703780" },
|
|
{ label: "Email: info@kubecbistro.com", href: "mailto:info@kubecbistro.com" },
|
|
{ label: "Location: Powai, Mumbai", href: "https://maps.google.com" },
|
|
{ label: "Hours: 12PM - 1:30AM", href: "#" },
|
|
],
|
|
},
|
|
{
|
|
title: "Services", items: [
|
|
{ label: "Online Reservations", href: "#contact" },
|
|
{ label: "Corporate Events", href: "#contact" },
|
|
{ label: "Birthday Parties", href: "#contact" },
|
|
{ label: "Order Online", href: "https://www.zomato.com" },
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
}
|