8 Commits

Author SHA1 Message Date
c1dbfebe98 Merge version_2 into main
Merge version_2 into main
2026-06-07 10:16:24 +00:00
70e836b0a0 Update theme fonts 2026-06-07 10:16:21 +00:00
a2bfb8674d Merge version_2 into main
Merge version_2 into main
2026-06-07 10:16:20 +00:00
583e35d82d Update theme fonts 2026-06-07 10:16:20 +00:00
4926ff8d9c Update theme fonts 2026-06-07 10:16:17 +00:00
98279363db Update theme fonts 2026-06-07 10:16:17 +00:00
f16799cb14 Merge version_2 into main
Merge version_2 into main
2026-06-07 10:15:32 +00:00
4f07481e31 Update src/app/page.tsx 2026-06-07 10:15:26 +00:00
2 changed files with 62 additions and 209 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Open_Sans } from "next/font/google"; import { Open_Sans } from "next/font/google";
import { DM_Sans } from "next/font/google";
@@ -41,6 +42,8 @@ export const metadata: Metadata = {
}, },
}; };
const inter = Inter({ const inter = Inter({
variable: "--font-inter", variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],

View File

@@ -31,29 +31,17 @@ export default function LandingPage() {
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "#home"},
id: "#home",
},
{ {
name: "About Us", name: "About Us", id: "#about"},
id: "#about",
},
{ {
name: "Menu", name: "Menu", id: "#menu"},
id: "#menu",
},
{ {
name: "Testimonials", name: "Testimonials", id: "#testimonials"},
id: "#testimonials",
},
{ {
name: "FAQ", name: "FAQ", id: "#faq"},
id: "#faq",
},
{ {
name: "Contact", name: "Contact", id: "#contact"},
id: "#contact",
},
]} ]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ubhg4d" logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ubhg4d"
logoAlt="Chai Master Cafe logo" logoAlt="Chai Master Cafe logo"
@@ -64,52 +52,29 @@ export default function LandingPage() {
<div id="home" data-section="home"> <div id="home" data-section="home">
<HeroBillboardRotatedCarousel <HeroBillboardRotatedCarousel
background={{ background={{
variant: "rotated-rays-animated", variant: "rotated-rays-animated"}}
}}
title="Sip, Savor, & Relax at Chai Master Cafe" title="Sip, Savor, & Relax at Chai Master Cafe"
description="Experience the authentic flavors of traditional Indian chai, delightful snacks, and refreshing coffees in a cozy, welcoming atmosphere. Your perfect escape in Mangaluru." description="Experience the authentic flavors of traditional Indian chai, delightful snacks, and refreshing coffees in a cozy, welcoming atmosphere. Your perfect escape in Mangaluru."
buttons={[ buttons={[
{ {
text: "Explore Our Menu", text: "Explore Our Menu", href: "#menu"},
href: "#menu",
},
{ {
text: "Visit Us Today", text: "Visit Us Today", href: "#contact"},
href: "#contact",
},
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
carouselItems={[ carouselItems={[
{ {
id: "1", id: "1", imageSrc: "http://img.b2bpic.net/free-photo/breakfast-cafe-vertical-shot-steam-rises-cup-espresso-coffee-glass-water-cookies-table-closeup-sunlight-selective-focus-empty-space-idea-advertising-banner_166373-2884.jpg", imageAlt: "Cozy cafe interior with warm lighting"},
imageSrc: "http://img.b2bpic.net/free-photo/breakfast-cafe-vertical-shot-steam-rises-cup-espresso-coffee-glass-water-cookies-table-closeup-sunlight-selective-focus-empty-space-idea-advertising-banner_166373-2884.jpg",
imageAlt: "Cozy cafe interior with warm lighting",
},
{ {
id: "2", id: "2", imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-preparing-matcha-tea_23-2150163515.jpg", imageAlt: "Steaming cup of authentic masala chai"},
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-preparing-matcha-tea_23-2150163515.jpg",
imageAlt: "Steaming cup of authentic masala chai",
},
{ {
id: "3", id: "3", imageSrc: "http://img.b2bpic.net/free-photo/slice-stewed-meat-other-condiments-sandwiched-flat-steamed-bread-plate_23-2148123609.jpg", imageAlt: "Assortment of delicious Indian snacks"},
imageSrc: "http://img.b2bpic.net/free-photo/slice-stewed-meat-other-condiments-sandwiched-flat-steamed-bread-plate_23-2148123609.jpg",
imageAlt: "Assortment of delicious Indian snacks",
},
{ {
id: "4", id: "4", imageSrc: "http://img.b2bpic.net/free-photo/barista-cafe-making-coffee-preparation-service-concept_1157-36648.jpg", imageAlt: "Skilled barista preparing coffee"},
imageSrc: "http://img.b2bpic.net/free-photo/barista-cafe-making-coffee-preparation-service-concept_1157-36648.jpg",
imageAlt: "Skilled barista preparing coffee",
},
{ {
id: "5", id: "5", imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup-table_74190-3760.jpg", imageAlt: "Friends enjoying conversation in a cafe"},
imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup-table_74190-3760.jpg",
imageAlt: "Friends enjoying conversation in a cafe",
},
{ {
id: "6", id: "6", imageSrc: "http://img.b2bpic.net/free-photo/restaurant-room-with-paintings-walls_140725-6310.jpg", imageAlt: "Vibrant Indian decor within the cafe"},
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-room-with-paintings-walls_140725-6310.jpg",
imageAlt: "Vibrant Indian decor within the cafe",
},
]} ]}
autoPlay={true} autoPlay={true}
autoPlayInterval={4000} autoPlayInterval={4000}
@@ -121,19 +86,12 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
title="Our Passion for Authentic Flavors" title="Our Passion for Authentic Flavors"
description={[ description={[
"At Chai Master Cafe, we believe in bringing you more than just a beverage; we offer an experience. Rooted in the rich traditions of Indian tea culture, our cafe is a hub where authentic flavors meet modern comfort. We meticulously source the finest tea leaves and aromatic spices to craft each cup of chai, ensuring a taste that transports you to the heart of India.", "At Chai Master Cafe, we believe in bringing you more than just a beverage; we offer an experience. Rooted in the rich traditions of Indian tea culture, our cafe is a hub where authentic flavors meet modern comfort. We meticulously source the finest tea leaves and aromatic spices to craft each cup of chai, ensuring a taste that transports you to the heart of India.", "Beyond our signature chai, we also serve expertly brewed coffees and a delectable range of snacks, perfect to accompany your drink. Our mission is to create a warm, inviting space where friends and family can gather, relax, and savor moments together.", "We are proud to be a part of the Mangaluru community, contributing a cozy spot for both locals and visitors to unwind. Come, discover the magic of Chai Master Cafe, where every sip tells a story of tradition, quality, and passion."]}
"Beyond our signature chai, we also serve expertly brewed coffees and a delectable range of snacks, perfect to accompany your drink. Our mission is to create a warm, inviting space where friends and family can gather, relax, and savor moments together.",
"We are proud to be a part of the Mangaluru community, contributing a cozy spot for both locals and visitors to unwind. Come, discover the magic of Chai Master Cafe, where every sip tells a story of tradition, quality, and passion.",
]}
buttons={[ buttons={[
{ {
text: "Our Story", text: "Our Story", href: "#about"},
href: "#",
},
{ {
text: "See Our Vision", text: "See Our Vision", href: "#features"},
href: "#",
},
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
showBorder={false} showBorder={false}
@@ -148,23 +106,11 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ {
title: "Finest Tea & Spices", title: "Finest Tea & Spices", description: "We handpick premium tea leaves and blend them with freshly ground Indian spices, ensuring an aromatic and flavorful experience in every cup.", imageSrc: "http://img.b2bpic.net/free-photo/assortment-winter-spices_114579-11750.jpg", imageAlt: "Assortment of chai spices"},
description: "We handpick premium tea leaves and blend them with freshly ground Indian spices, ensuring an aromatic and flavorful experience in every cup.",
imageSrc: "http://img.b2bpic.net/free-photo/assortment-winter-spices_114579-11750.jpg",
imageAlt: "Assortment of chai spices",
},
{ {
title: "Cozy & Welcoming Ambiance", title: "Cozy & Welcoming Ambiance", description: "Our cafe offers a serene and comfortable environment, perfect for relaxing, catching up with friends, or enjoying a quiet moment alone.", imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-woman-using-digital-tablet-restaurant-table_23-2147936094.jpg", imageAlt: "Cozy cafe interior"},
description: "Our cafe offers a serene and comfortable environment, perfect for relaxing, catching up with friends, or enjoying a quiet moment alone.",
imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-woman-using-digital-tablet-restaurant-table_23-2147936094.jpg",
imageAlt: "Cozy cafe interior",
},
{ {
title: "Community Gathering Spot", title: "Community Gathering Spot", description: "Chai Master Cafe is more than just a cafe; it's a place where connections are made and cherished memories are created within our vibrant community.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-sitting-together_23-2149128359.jpg", imageAlt: "People socializing in a cafe"},
description: "Chai Master Cafe is more than just a cafe; it's a place where connections are made and cherished memories are created within our vibrant community.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-sitting-together_23-2149128359.jpg",
imageAlt: "People socializing in a cafe",
},
]} ]}
title="Why Choose Chai Master Cafe?" title="Why Choose Chai Master Cafe?"
description="Discover the unique elements that make Chai Master Cafe your favorite spot." description="Discover the unique elements that make Chai Master Cafe your favorite spot."
@@ -179,65 +125,23 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
products={[ products={[
{ {
id: "masala-chai", id: "masala-chai", brand: "Signature Brew", name: "Classic Masala Chai", price: "₹90", rating: 5,
brand: "Signature Brew", reviewCount: "250+", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cup-tea-inside-plate-cup-dark-background-tea-drink-color-photo-sweet_140725-55736.jpg", imageAlt: "Classic Masala Chai"},
name: "Classic Masala Chai",
price: "₹90",
rating: 5,
reviewCount: "250+",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cup-tea-inside-plate-cup-dark-background-tea-drink-color-photo-sweet_140725-55736.jpg",
imageAlt: "Classic Masala Chai",
},
{ {
id: "ginger-tea", id: "ginger-tea", brand: "Refresh & Revive", name: "Fresh Ginger Tea", price: "₹80", rating: 4,
brand: "Refresh & Revive", reviewCount: "180+", imageSrc: "http://img.b2bpic.net/free-photo/crackers-cheese-glass-beer-wooden-board-high-quality-photo_114579-67291.jpg", imageAlt: "Fresh Ginger Tea"},
name: "Fresh Ginger Tea",
price: "₹80",
rating: 4,
reviewCount: "180+",
imageSrc: "http://img.b2bpic.net/free-photo/crackers-cheese-glass-beer-wooden-board-high-quality-photo_114579-67291.jpg",
imageAlt: "Fresh Ginger Tea",
},
{ {
id: "veg-pakora", id: "veg-pakora", brand: "Savory Snack", name: "Crispy Vegetable Pakora", price: "₹120", rating: 5,
brand: "Savory Snack", reviewCount: "210+", imageSrc: "http://img.b2bpic.net/free-photo/breaded-rolls-served-with-lemon_140725-8969.jpg", imageAlt: "Crispy Vegetable Pakora"},
name: "Crispy Vegetable Pakora",
price: "₹120",
rating: 5,
reviewCount: "210+",
imageSrc: "http://img.b2bpic.net/free-photo/breaded-rolls-served-with-lemon_140725-8969.jpg",
imageAlt: "Crispy Vegetable Pakora",
},
{ {
id: "samosa", id: "samosa", brand: "Indian Favorite", name: "Spiced Aloo Samosa", price: "₹60", rating: 4,
brand: "Indian Favorite", reviewCount: "150+", imageSrc: "http://img.b2bpic.net/free-photo/delicious-crunchy-chips-wooden-plate_114579-63296.jpg", imageAlt: "Spiced Aloo Samosa"},
name: "Spiced Aloo Samosa",
price: "₹60",
rating: 4,
reviewCount: "150+",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-crunchy-chips-wooden-plate_114579-63296.jpg",
imageAlt: "Spiced Aloo Samosa",
},
{ {
id: "club-sandwich", id: "club-sandwich", brand: "Quick Bite", name: "Cafe Club Sandwich", price: "₹150", rating: 4,
brand: "Quick Bite", reviewCount: "90+", imageSrc: "http://img.b2bpic.net/free-photo/front-view-french-fries-along-with-sandwiches-black-desk-grey-surface_140725-14421.jpg", imageAlt: "Cafe Club Sandwich"},
name: "Cafe Club Sandwich",
price: "₹150",
rating: 4,
reviewCount: "90+",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-french-fries-along-with-sandwiches-black-desk-grey-surface_140725-14421.jpg",
imageAlt: "Cafe Club Sandwich",
},
{ {
id: "latte", id: "latte", brand: "Coffee Corner", name: "Creamy Cafe Latte", price: "₹140", rating: 5,
brand: "Coffee Corner", reviewCount: "130+", imageSrc: "http://img.b2bpic.net/free-photo/latte-coffee-art-table_1232-3410.jpg", imageAlt: "Creamy Cafe Latte"},
name: "Creamy Cafe Latte",
price: "₹140",
rating: 5,
reviewCount: "130+",
imageSrc: "http://img.b2bpic.net/free-photo/latte-coffee-art-table_1232-3410.jpg",
imageAlt: "Creamy Cafe Latte",
},
]} ]}
title="Our Delectable Menu" title="Our Delectable Menu"
description="Explore our wide range of authentic chais, refreshing coffees, and savory snacks." description="Explore our wide range of authentic chais, refreshing coffees, and savory snacks."
@@ -252,25 +156,15 @@ export default function LandingPage() {
author="Priya Sharma" author="Priya Sharma"
avatars={[ avatars={[
{ {
src: "http://img.b2bpic.net/free-photo/handsome-hipster-with-dreads-has-pleasant-smile-has-white-teeth-happy-hear-good-news-wears-bright-clothes_273609-33580.jpg", src: "http://img.b2bpic.net/free-photo/handsome-hipster-with-dreads-has-pleasant-smile-has-white-teeth-happy-hear-good-news-wears-bright-clothes_273609-33580.jpg", alt: "Priya Sharma"},
alt: "Priya Sharma",
},
{ {
src: "http://img.b2bpic.net/free-photo/portrait-handsome-man-with-glasses_23-2148422106.jpg", src: "http://img.b2bpic.net/free-photo/portrait-handsome-man-with-glasses_23-2148422106.jpg", alt: "Rahul Singh"},
alt: "Rahul Singh",
},
{ {
src: "http://img.b2bpic.net/free-photo/indoor-shot-cheerful-positive-mixed-race-man-with-healthy-pure-skin-being-wet-after-going-sport_273609-8616.jpg", src: "http://img.b2bpic.net/free-photo/indoor-shot-cheerful-positive-mixed-race-man-with-healthy-pure-skin-being-wet-after-going-sport_273609-8616.jpg", alt: "Anjali Mehta"},
alt: "Anjali Mehta",
},
{ {
src: "http://img.b2bpic.net/free-photo/people-technology-close-up-shot-happy-face-attractive-bearded-man-sitting-front-laptop-screen-smiling-joyfully-while-messaging-friends-online-via-social-networks_273609-6655.jpg", src: "http://img.b2bpic.net/free-photo/people-technology-close-up-shot-happy-face-attractive-bearded-man-sitting-front-laptop-screen-smiling-joyfully-while-messaging-friends-online-via-social-networks_273609-6655.jpg", alt: "Vikram Kumar"},
alt: "Vikram Kumar",
},
{ {
src: "http://img.b2bpic.net/free-photo/stylish-man-smiling-close-up_23-2148508995.jpg", src: "http://img.b2bpic.net/free-photo/stylish-man-smiling-close-up_23-2148508995.jpg", alt: "Deepak Rao, satisfied customer"},
alt: "Deepak Rao, satisfied customer",
},
]} ]}
ratingAnimation="slide-up" ratingAnimation="slide-up"
avatarsAnimation="slide-up" avatarsAnimation="slide-up"
@@ -283,30 +177,15 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
faqs={[ faqs={[
{ {
id: "q1", id: "q1", title: "What are your operating hours?", content: "We are open from 8:00 AM to 9:00 PM, Monday to Sunday, ensuring you can enjoy our offerings throughout the week."},
title: "What are your operating hours?",
content: "We are open from 8:00 AM to 9:00 PM, Monday to Sunday, ensuring you can enjoy our offerings throughout the week.",
},
{ {
id: "q2", id: "q2", title: "Do you offer vegan or gluten-free options?", content: "Yes, we have a selection of vegan-friendly chai and coffee options, and some gluten-free snacks. Please ask our staff for today's specials."},
title: "Do you offer vegan or gluten-free options?",
content: "Yes, we have a selection of vegan-friendly chai and coffee options, and some gluten-free snacks. Please ask our staff for today's specials.",
},
{ {
id: "q3", id: "q3", title: "Can I place an order for pickup?", content: "Absolutely! You can call us directly or use our online ordering system through our website for quick and convenient pickup."},
title: "Can I place an order for pickup?",
content: "Absolutely! You can call us directly or use our online ordering system through our website for quick and convenient pickup.",
},
{ {
id: "q4", id: "q4", title: "Do you have Wi-Fi available for customers?", content: "Yes, we provide complimentary high-speed Wi-Fi for all our customers, making it a perfect spot for work or leisure."},
title: "Do you have Wi-Fi available for customers?",
content: "Yes, we provide complimentary high-speed Wi-Fi for all our customers, making it a perfect spot for work or leisure.",
},
{ {
id: "q5", id: "q5", title: "Is your cafe pet-friendly?", content: "We welcome well-behaved pets in our outdoor seating area. Please ensure they are on a leash and do not disturb other guests."},
title: "Is your cafe pet-friendly?",
content: "We welcome well-behaved pets in our outdoor seating area. Please ensure they are on a leash and do not disturb other guests.",
},
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/woman-pouring-water-carafe_23-2148440476.jpg" imageSrc="http://img.b2bpic.net/free-photo/woman-pouring-water-carafe_23-2148440476.jpg"
imageAlt="People enjoying the cafe ambiance" imageAlt="People enjoying the cafe ambiance"
@@ -326,22 +205,14 @@ export default function LandingPage() {
description="Have questions or want to share your feedback? Reach out to us using the form below, or visit us at our Mangaluru location." description="Have questions or want to share your feedback? Reach out to us using the form below, or visit us at our Mangaluru location."
inputs={[ inputs={[
{ {
name: "name", name: "name", type: "text", placeholder: "Your Name", required: true,
type: "text",
placeholder: "Your Name",
required: true,
}, },
{ {
name: "email", name: "email", type: "email", placeholder: "Your Email", required: true,
type: "email",
placeholder: "Your Email",
required: true,
}, },
]} ]}
textarea={{ textarea={{
name: "message", name: "message", placeholder: "Your Message", rows: 4,
placeholder: "Your Message",
rows: 4,
required: true, required: true,
}} }}
imageSrc="http://img.b2bpic.net/free-photo/people-enjoying-traditional-japanese-food_23-2148759579.jpg" imageSrc="http://img.b2bpic.net/free-photo/people-enjoying-traditional-japanese-food_23-2148759579.jpg"
@@ -359,54 +230,33 @@ export default function LandingPage() {
logoText="Chai Master Cafe" logoText="Chai Master Cafe"
columns={[ columns={[
{ {
title: "Menu", title: "Menu", items: [
items: [
{ {
label: "Masala Chai", label: "Masala Chai", href: "#menu"},
href: "#menu",
},
{ {
label: "Coffee", label: "Coffee", href: "#menu"},
href: "#menu",
},
{ {
label: "Snacks", label: "Snacks", href: "#menu"},
href: "#menu",
},
], ],
}, },
{ {
title: "About", title: "About", items: [
items: [
{ {
label: "Our Story", label: "Our Story", href: "#about"},
href: "#about",
},
{ {
label: "Our Values", label: "Our Values", href: "#about"},
href: "#about",
},
{ {
label: "Team", label: "Team", href: "#"},
href: "#",
},
], ],
}, },
{ {
title: "Support", title: "Support", items: [
items: [
{ {
label: "FAQ", label: "FAQ", href: "#faq"},
href: "#faq",
},
{ {
label: "Contact Us", label: "Contact Us", href: "#contact"},
href: "#contact",
},
{ {
label: "Feedback", label: "Feedback", href: "#contact"},
href: "#contact",
},
], ],
}, },
]} ]}
@@ -416,4 +266,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }