5 Commits

Author SHA1 Message Date
ab494f20a5 Merge version_2 into main
Merge version_2 into main
2026-06-10 17:56:08 +00:00
373e3c1b80 Update src/app/page.tsx 2026-06-10 17:56:05 +00:00
7d27f9c737 Merge version_2 into main
Merge version_2 into main
2026-06-10 17:55:10 +00:00
807246ed5e Update src/app/page.tsx 2026-06-10 17:55:07 +00:00
565fffc08c Merge version_1 into main
Merge version_1 into main
2026-06-10 17:49:18 +00:00

View File

@@ -7,10 +7,43 @@ import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwen
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterBase from '@/components/sections/footer/FooterBase';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import { Camera, Coffee, DollarSign } from "lucide-react";
const commonNavItems = [
{ name: "Home", id: "/" },
{ name: "About Us", id: "/about-us" },
{ name: "Menu", id: "/menu" },
{ name: "Why Choose Us", id: "/#why-choose-us" },
{ name: "Gallery", id: "/#gallery" },
{ name: "Reviews", id: "/#reviews" },
{ name: "Contact", id: "/#contact" },
];
const commonFooterColumns = [
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "Menu", href: "/menu" },
{ label: "Gallery", href: "/#gallery" },
{ label: "Reviews", href: "/#reviews" },
],
},
{
title: "Contact Us", items: [
{ label: "Location", href: "/#contact" },
{ label: "Call Us: 70303 70370", href: "tel:+917030370370" },
{ label: "WhatsApp Us", href: "https://wa.me/917030370370" },
],
},
{
title: "Follow Us", items: [
{ label: "Instagram", href: "https://instagram.com/kafeculture" },
{ label: "Facebook", href: "https://facebook.com/kafeculture" },
{ label: "Google Reviews", href: "https://g.page/kafe-culture-jalgaon/review" },
],
},
];
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -29,24 +62,10 @@ export default function LandingPage() {
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={commonNavItems}
{
name: "Home", id: "#hero"},
{
name: "About Us", id: "#about-us"},
{
name: "Menu", id: "#menu"},
{
name: "Why Choose Us", id: "#why-choose-us"},
{
name: "Gallery", id: "#gallery"},
{
name: "Reviews", id: "#reviews"},
{
name: "Contact", id: "#contact"},
]}
button={{ button={{
text: "Call Us", href: "tel:+917030370370"}} text: "Call Us", href: "tel:+917030370370"
}}
brandName="Kafe Culture" brandName="Kafe Culture"
/> />
</div> </div>
@@ -54,14 +73,17 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogoBillboard <HeroLogoBillboard
background={{ background={{
variant: "rotated-rays-static"}} variant: "rotated-rays-static"
}}
logoText="Kafe Culture" logoText="Kafe Culture"
description="Where Every Sip Feels Like Home. A cozy and aesthetic café in Jalgaon offering delightful mocktails, food, and desserts for friends and family." description="Where Every Sip Feels Like Home. A cozy and aesthetic café in Jalgaon offering delightful mocktails, food, and desserts for friends and family."
buttons={[ buttons={[
{ {
text: "View Menu", href: "#menu"}, text: "View Menu", href: "/menu"
},
{ {
text: "Reserve a Table", href: "#contact"}, text: "Reserve a Table", href: "/#contact"
},
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/stylish-young-woman-using-digital-tablet-restaurant-table_23-2147936094.jpg" imageSrc="http://img.b2bpic.net/free-photo/stylish-young-woman-using-digital-tablet-restaurant-table_23-2147936094.jpg"
imageAlt="Warm and inviting interior of Kafe Culture cafe" imageAlt="Warm and inviting interior of Kafe Culture cafe"
@@ -69,29 +91,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="about-us" data-section="about-us"> {/* The About Us section has been moved to its own page: /about-us */}
<SplitAbout
textboxLayout="default"
useInvertedBackground={false}
imagePosition="right"
title="Our Story: The Heart of Kafe Culture"
description="Nestled in the vibrant city of Jalgaon, Kafe Culture was born from a simple passion: to create a warm, inviting space where everyone feels at home. We believe in the magic of good food, delightful drinks, and shared moments, all served with a touch of modern aesthetics and affordability. From our cozy corners for solo coffee time to lively spots for friends and family, every detail is crafted with love and our local roots in mind."
bulletPoints={[
{
title: "Exquisite Taste", description: "Savor our carefully crafted beverages and dishes, made with passion and quality ingredients.", icon: Coffee,
},
{
title: "Aesthetic Ambiance", description: "Relax in our calm, modern, and Instagram-worthy surroundings, perfect for any mood.", icon: Camera,
},
{
title: "Unbeatable Value", description: "Enjoy a premium café experience with delightful offerings at truly affordable prices.", icon: DollarSign,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/person-cafe-enjoying-book_23-2150064701.jpg"
imageAlt="Exterior view of Kafe Culture cafe in Jalgaon"
mediaAnimation="slide-up"
/>
</div>
<div id="why-choose-us" data-section="why-choose-us"> <div id="why-choose-us" data-section="why-choose-us">
<FeatureCardTwentyFour <FeatureCardTwentyFour
@@ -101,78 +101,79 @@ export default function LandingPage() {
features={[ features={[
{ {
id: "f1", title: "4.6★ Customer Rating", author: "Google Reviews", description: "Highly praised by 173 satisfied customers for exceptional service and quality.", tags: [ id: "f1", title: "4.6★ Customer Rating", author: "Google Reviews", description: "Highly praised by 173 satisfied customers for exceptional service and quality.", tags: [
"Quality", "Service"], "Quality", "Service"
imageSrc: "http://img.b2bpic.net/free-photo/diverse-people-showing-golden-star-rating-symbol_53876-71536.jpg", imageAlt: "Star rating icon"}, ],
imageSrc: "http://img.b2bpic.net/free-photo/diverse-people-showing-golden-star-rating-symbol_53876-71536.jpg", imageAlt: "Star rating icon"
},
{ {
id: "f2", title: "Signature Mocktails", author: "Our Baristas", description: "Our unique, tasty, and refreshing mocktails are a must-try for everyone.", tags: [ id: "f2", title: "Signature Mocktails", author: "Our Baristas", description: "Our unique, tasty, and refreshing mocktails are a must-try for everyone.", tags: [
"Drinks", "Unique"], "Drinks", "Unique"
imageSrc: "http://img.b2bpic.net/free-photo/campagne-glass-with-champagne-it-garnished-with-dried-lemon-slice_140725-1506.jpg", imageAlt: "Refreshing signature mocktail"}, ],
imageSrc: "http://img.b2bpic.net/free-photo/campagne-glass-with-champagne-it-garnished-with-dried-lemon-slice_140725-1506.jpg", imageAlt: "Refreshing signature mocktail"
},
{ {
id: "f3", title: "Aesthetic Ambiance", author: "Our Designers", description: "The perfect blend of calm and modern decor for every mood and occasion.", tags: [ id: "f3", title: "Aesthetic Ambiance", author: "Our Designers", description: "The perfect blend of calm and modern decor for every mood and occasion.", tags: [
"Cozy", "Modern"], "Cozy", "Modern"
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-hands-holding-smartphone_23-2149366417.jpg", imageAlt: "Aesthetic cafe interior"}, ],
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-hands-holding-smartphone_23-2149366417.jpg", imageAlt: "Aesthetic cafe interior"
},
{ {
id: "f4", title: "Affordable Luxury", author: "Our Promise", description: "Enjoy a premium experience with delightful offerings, typically ₹200400 per person.", tags: [ id: "f4", title: "Affordable Luxury", author: "Our Promise", description: "Enjoy a premium experience with delightful offerings, typically ₹200400 per person.", tags: [
"Value", "Budget-Friendly"], "Value", "Budget-Friendly"
imageSrc: "http://img.b2bpic.net/free-vector/outline-wallet-with-yellow-coin_78370-7129.jpg", imageAlt: "Indian Rupee currency"}, ],
imageSrc: "http://img.b2bpic.net/free-vector/outline-wallet-with-yellow-coin_78370-7129.jpg", imageAlt: "Indian Rupee currency"
},
{ {
id: "f5", title: "Friendly Staff", author: "Our Team", description: "Our warm and welcoming team ensures every visit is memorable and enjoyable.", tags: [ id: "f5", title: "Friendly Staff", author: "Our Team", description: "Our warm and welcoming team ensures every visit is memorable and enjoyable.", tags: [
"Hospitality", "Service"], "Hospitality", "Service"
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-bald-call-center-man-wearing-headset-sitting-desk-with-work-tools-showing-empty-hands-isolated-white-wall_141793-94410.jpg", imageAlt: "Smiling friendly cafe staff"}, ],
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-bald-call-center-man-wearing-headset-sitting-desk-with-work-tools-showing-empty-hands-isolated-white-wall_141793-94410.jpg", imageAlt: "Smiling friendly cafe staff"
},
{ {
id: "f6", title: "Convenient Drive-Through", author: "Your Convenience", description: "Grab your favorite beverages and bites on the go, quick and hassle-free.", tags: [ id: "f6", title: "Convenient Drive-Through", author: "Your Convenience", description: "Grab your favorite beverages and bites on the go, quick and hassle-free.", tags: [
"Speed", "Takeaway"], "Speed", "Takeaway"
imageSrc: "http://img.b2bpic.net/free-photo/new-normal-coffee-shop-with-face-shield_23-2148656705.jpg", imageAlt: "Car at a drive-through window"}, ],
imageSrc: "http://img.b2bpic.net/free-photo/new-normal-coffee-shop-with-face-shield_23-2148656705.jpg", imageAlt: "Car at a drive-through window"
},
]} ]}
title="Why Kafe Culture?" title="Why Kafe Culture?"
description="We're more than just a café; we're a community hub where quality, comfort, and value converge. Discover the reasons our guests keep coming back." description="We're more than just a café; we're a community hub where quality, comfort, and value converge. Discover the reasons our guests keep coming back."
/> />
</div> </div>
<div id="menu" data-section="menu"> {/* The Menu section has been moved to its own page: /menu */}
<ProductCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{
id: "p1", name: "Hot Coffee", price: "₹180", imageSrc: "http://img.b2bpic.net/free-photo/latte-coffee_74190-7833.jpg", imageAlt: "Steaming hot coffee mug"},
{
id: "p2", name: "Iced Latte", price: "₹220", imageSrc: "http://img.b2bpic.net/free-photo/iced-coffee_1339-2846.jpg", imageAlt: "Refreshing iced latte glass"},
{
id: "p3", name: "KC Special Mocktail", price: "₹250", imageSrc: "http://img.b2bpic.net/free-photo/iced-mocktails_1203-3088.jpg", imageAlt: "Kafe Culture special mocktail"},
{
id: "p4", name: "Berry Blast Mocktail", price: "₹230", imageSrc: "http://img.b2bpic.net/free-photo/alcoholic-beverage-cocktail-with-raspberry_23-2148722562.jpg", imageAlt: "Colorful berry blast mocktail"},
{
id: "p5", name: "KC Special Pizza", price: "₹380", imageSrc: "http://img.b2bpic.net/free-photo/cheese-pizza-wooden-table-close-up_1232-1147.jpg", imageAlt: "Kafe Culture special pizza"},
{
id: "p6", name: "Chocolate Brownie", price: "₹150", imageSrc: "http://img.b2bpic.net/free-photo/appetizing-chocolate-muffin_1220-455.jpg", imageAlt: "Decadent chocolate brownie"},
]}
title="Our Delicious Offerings"
description="Explore a delightful array of hot beverages, refreshing mocktails, mouth-watering food, and indulgent desserts. Each item crafted to perfection."
/>
</div>
<div id="gallery" data-section="gallery"> <div id="gallery" data-section="gallery">
<ProductCardOne <ProductCardTwo
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
gridVariant="bento-grid" gridVariant="bento-grid"
useInvertedBackground={true} useInvertedBackground={true}
products={[ products={[
{ {
id: "g1", name: "Food Spread", price: "", imageSrc: "http://img.b2bpic.net/free-photo/assorted-coffee-cups-textured-background_53876-176760.jpg", imageAlt: "Delicious food and beverages spread on a table"}, id: "g1", brand: "Kafe Culture", name: "Food Spread", price: "", rating: 5,
reviewCount: "N/A", imageSrc: "http://img.b2bpic.net/free-photo/assorted-coffee-cups-textured-background_53876-176760.jpg", imageAlt: "Delicious food and beverages spread on a table"
},
{ {
id: "g2", name: "Cozy Interiors", price: "", imageSrc: "http://img.b2bpic.net/free-photo/cozy-cafe-hotel-decorated-with-green-plants-flowers_181624-37913.jpg", imageAlt: "Modern and cozy cafe interior with warm lighting"}, id: "g2", brand: "Kafe Culture", name: "Cozy Interiors", price: "", rating: 5,
reviewCount: "N/A", imageSrc: "http://img.b2bpic.net/free-photo/cozy-cafe-hotel-decorated-with-green-plants-flowers_181624-37913.jpg", imageAlt: "Modern and cozy cafe interior with warm lighting"
},
{ {
id: "g3", name: "Vibrant Vibe", price: "", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-friends-drinking_23-2147680595.jpg", imageAlt: "Happy friends enjoying the cafe atmosphere"}, id: "g3", brand: "Kafe Culture", name: "Vibrant Vibe", price: "", rating: 5,
reviewCount: "N/A", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-friends-drinking_23-2147680595.jpg", imageAlt: "Happy friends enjoying the cafe atmosphere"
},
{ {
id: "g4", name: "Barista at Work", price: "", imageSrc: "http://img.b2bpic.net/free-photo/man-apron-holding-glass-with-coffee-cups_23-2148366679.jpg", imageAlt: "Barista preparing a specialty coffee"}, id: "g4", brand: "Kafe Culture", name: "Barista at Work", price: "", rating: 5,
reviewCount: "N/A", imageSrc: "http://img.b2bpic.net/free-photo/man-apron-holding-glass-with-coffee-cups_23-2148366679.jpg", imageAlt: "Barista preparing a specialty coffee"
},
{ {
id: "g5", name: "Sweet Delights", price: "", imageSrc: "http://img.b2bpic.net/free-photo/top-close-up-view-cookies-cake-cake-cookies-cup-tea-citrus-fruits-cinnamon-sticks_140725-123577.jpg", imageAlt: "Assortment of delicious desserts and pastries"}, id: "g5", brand: "Kafe Culture", name: "Sweet Delights", price: "", rating: 5,
reviewCount: "N/A", imageSrc: "http://img.b2bpic.net/free-photo/top-close-up-view-cookies-cake-cake-cookies-cup-tea-citrus-fruits-cinnamon-sticks_140725-123577.jpg", imageAlt: "Assortment of delicious desserts and pastries"
},
{ {
id: "g6", name: "Evening Exterior", price: "", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-shot-brown-building-with-vertical-windows_181624-3596.jpg", imageAlt: "Kafe Culture exterior at night with warm lights"}, id: "g6", brand: "Kafe Culture", name: "Evening Exterior", price: "", rating: 5,
reviewCount: "N/A", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-shot-brown-building-with-vertical-windows_181624-3596.jpg", imageAlt: "Kafe Culture exterior at night with warm lights"
}
]} ]}
title="A Glimpse of Kafe Culture" title="A Glimpse of Kafe Culture"
description="Immerse yourself in the visual delight of our café. From our delectable food to our cozy interiors and vibrant ambiance, see why we're an Instagram-worthy spot." description="Immerse yourself in the visual delight of our café. From our delectable food to our cozy interiors and vibrant ambiance, see why we're an Instagram-worthy spot."
@@ -188,27 +189,35 @@ export default function LandingPage() {
testimonials={[ testimonials={[
{ {
id: "t1", name: "Humeshwari Patil", role: "Customer", company: "Local Visitor", rating: 5, id: "t1", name: "Humeshwari Patil", role: "Customer", company: "Local Visitor", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-joyful-woman-holding-mobile-phone_171337-4024.jpg", imageAlt: "Portrait of Humeshwari Patil"}, imageSrc: "http://img.b2bpic.net/free-photo/portrait-joyful-woman-holding-mobile-phone_171337-4024.jpg", imageAlt: "Portrait of Humeshwari Patil"
},
{ {
id: "t2", name: "Bhaskar Sonar", role: "Customer", company: "Local Visitor", rating: 5, id: "t2", name: "Bhaskar Sonar", role: "Customer", company: "Local Visitor", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-handsome-smiling-redhead-bearded-man-holding-coffee-cup-looking-aside_171337-9997.jpg", imageAlt: "Portrait of Bhaskar Sonar"}, imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-handsome-smiling-redhead-bearded-man-holding-coffee-cup-looking-aside_171337-9997.jpg", imageAlt: "Portrait of Bhaskar Sonar"
},
{ {
id: "t3", name: "Sona Jain", role: "Local Guide", company: "Jalgaon", rating: 5, id: "t3", name: "Sona Jain", role: "Local Guide", company: "Jalgaon", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/casual-woman-drinking-coffe-working-with-tablet-pc_613910-16842.jpg", imageAlt: "Portrait of Sona Jain"}, imageSrc: "http://img.b2bpic.net/free-photo/casual-woman-drinking-coffe-working-with-tablet-pc_613910-16842.jpg", imageAlt: "Portrait of Sona Jain"
},
{ {
id: "t4", name: "Regular Guest", role: "Family Friend", company: "Kafe Culture", rating: 5, id: "t4", name: "Regular Guest", role: "Family Friend", company: "Kafe Culture", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/best-friends-are-chatting-laughing-with-tasty-snacks-terrace_8353-10306.jpg", imageAlt: "Group of friends enjoying cafe"}, imageSrc: "http://img.b2bpic.net/free-photo/best-friends-are-chatting-laughing-with-tasty-snacks-terrace_8353-10306.jpg", imageAlt: "Group of friends enjoying cafe"
},
{ {
id: "t5", name: "Happy Customer", role: "Food Enthusiast", company: "Jalgaon Foodie", rating: 5, id: "t5", name: "Happy Customer", role: "Food Enthusiast", company: "Jalgaon Foodie", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cook-holding-plate-with-ingredients-hands_23-2148040199.jpg", imageAlt: "Chef serving a delicious dish"}, imageSrc: "http://img.b2bpic.net/free-photo/cook-holding-plate-with-ingredients-hands_23-2148040199.jpg", imageAlt: "Chef serving a delicious dish"
},
]} ]}
kpiItems={[ kpiItems={[
{ {
value: "4.6", label: "Star Rating"}, value: "4.6", label: "Star Rating"
},
{ {
value: "173+", label: "Google Reviews"}, value: "173+", label: "Google Reviews"
},
{ {
value: "Jalgaon", label: "Community Love"}, value: "Jalgaon", label: "Community Love"
},
]} ]}
title="What Our Guests Say" title="What Our Guests Say"
description="Real stories from our valued customers. Their smiles and kind words are what drive us every day to provide the best experience at Kafe Culture." description="Real stories from our valued customers. Their smiles and kind words are what drive us every day to provide the best experience at Kafe Culture."
@@ -219,7 +228,8 @@ export default function LandingPage() {
<ContactCenter <ContactCenter
useInvertedBackground={true} useInvertedBackground={true}
background={{ background={{
variant: "sparkles-gradient"}} variant: "sparkles-gradient"
}}
tag="Get in Touch" tag="Get in Touch"
title="Visit Us or Make a Reservation" title="Visit Us or Make a Reservation"
description="Whether you're planning a visit, want to book a table for friends, or just have a quick question, we're here to help. Reach out to us or find us on the map below. For quick bookings, message us on WhatsApp!" description="Whether you're planning a visit, want to book a table for friends, or just have a quick question, we're here to help. Reach out to us or find us on the map below. For quick bookings, message us on WhatsApp!"
@@ -231,40 +241,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBase <FooterBase
columns={[ columns={commonFooterColumns}
{
title: "Quick Links", items: [
{
label: "Home", href: "#hero"},
{
label: "Menu", href: "#menu"},
{
label: "Gallery", href: "#gallery"},
{
label: "Reviews", href: "#reviews"},
],
},
{
title: "Contact Us", items: [
{
label: "Location", href: "#contact"},
{
label: "Call Us: 70303 70370", href: "tel:+917030370370"},
{
label: "WhatsApp Us", href: "https://wa.me/917030370370"},
],
},
{
title: "Follow Us", items: [
{
label: "Instagram", href: "https://instagram.com/kafeculture"},
{
label: "Facebook", href: "https://facebook.com/kafeculture"},
{
label: "Google Reviews", href: "https://g.page/kafe-culture-jalgaon/review"},
],
},
]}
logoText="Kafe Culture" logoText="Kafe Culture"
copyrightText="© 2025 Kafe Culture. All rights reserved." copyrightText="© 2025 Kafe Culture. All rights reserved."
/> />