Update src/app/page.tsx
This commit is contained in:
241
src/app/page.tsx
241
src/app/page.tsx
@@ -34,29 +34,19 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "#home"},
|
||||||
id: "#home",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "#about"},
|
||||||
id: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Menu",
|
name: "Menu", id: "#menu"},
|
||||||
id: "#menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Team",
|
name: "Team", id: "#team"},
|
||||||
id: "#team",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reviews",
|
name: "Reviews", id: "#reviews"},
|
||||||
id: "#reviews",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "#contact"},
|
||||||
id: "#contact",
|
{
|
||||||
},
|
name: "Footer", id: "#footer"}
|
||||||
]}
|
]}
|
||||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=mcif3h"
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=mcif3h"
|
||||||
logoAlt="Pondok Bambu Kuning Logo"
|
logoAlt="Pondok Bambu Kuning Logo"
|
||||||
@@ -67,51 +57,28 @@ 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="Welcome to Pondok Bambu Kuning"
|
title="Welcome to Pondok Bambu Kuning"
|
||||||
description="Experience the authentic taste of Indonesia in an elegant and serene bamboo-themed setting. A culinary journey awaits you."
|
description="Experience the authentic taste of Indonesia in an elegant and serene bamboo-themed setting. A culinary journey awaits you."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "View Our Menu",
|
text: "View Our Menu", href: "#menu"},
|
||||||
href: "#menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Make a Reservation",
|
text: "Make a Reservation", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
carouselItems={[
|
carouselItems={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/yellow-white-wooden-fence_250224-276.jpg", imageAlt: "Elegant Indonesian restaurant interior"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/yellow-white-wooden-fence_250224-276.jpg",
|
|
||||||
imageAlt: "Elegant Indonesian restaurant interior",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/noodles-spicy-frying-pans-with-ingredients-black-cement-surface_1150-19783.jpg", imageAlt: "Traditional Indonesian Sate Lilit"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/noodles-spicy-frying-pans-with-ingredients-black-cement-surface_1150-19783.jpg",
|
|
||||||
imageAlt: "Traditional Indonesian Sate Lilit",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-wearing-typical-thai-dress_1150-5611.jpg", imageAlt: "Restaurant staff serving Indonesian dishes"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-wearing-typical-thai-dress_1150-5611.jpg",
|
|
||||||
imageAlt: "Restaurant staff serving Indonesian dishes",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/vintage-tone-ice-melon-bingsu-famous-korean-ice-cream_1258-229.jpg", imageAlt: "Rich Soto Betawi soup"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/vintage-tone-ice-melon-bingsu-famous-korean-ice-cream_1258-229.jpg",
|
|
||||||
imageAlt: "Rich Soto Betawi soup",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/asian-people-having-dinner-party_23-2149552618.jpg", imageAlt: "Decorative bamboo elements in dining area"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/asian-people-having-dinner-party_23-2149552618.jpg",
|
|
||||||
imageAlt: "Decorative bamboo elements in dining area",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-dinner-table_23-2149882912.jpg", imageAlt: "Guests enjoying a traditional Indonesian feast"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-dinner-table_23-2149882912.jpg",
|
|
||||||
imageAlt: "Guests enjoying a traditional Indonesian feast",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
autoPlay={true}
|
autoPlay={true}
|
||||||
autoPlayInterval={5000}
|
autoPlayInterval={5000}
|
||||||
@@ -125,8 +92,7 @@ export default function LandingPage() {
|
|||||||
title="Pondok Bambu Kuning: A Taste of Heritage"
|
title="Pondok Bambu Kuning: A Taste of Heritage"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Learn More",
|
text: "Learn More"},
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -139,24 +105,16 @@ export default function LandingPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
icon: Utensils,
|
icon: Utensils,
|
||||||
title: "Authentic Recipes",
|
title: "Authentic Recipes", description: "Savor dishes prepared with time-honored Indonesian recipes and traditional cooking techniques."},
|
||||||
description: "Savor dishes prepared with time-honored Indonesian recipes and traditional cooking techniques.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Leaf,
|
icon: Leaf,
|
||||||
title: "Serene Ambiance",
|
title: "Serene Ambiance", description: "Dine in a tranquil bamboo-themed setting, reminiscent of Indonesia's natural beauty."},
|
||||||
description: "Dine in a tranquil bamboo-themed setting, reminiscent of Indonesia's natural beauty.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Star,
|
icon: Star,
|
||||||
title: "Finest Ingredients",
|
title: "Finest Ingredients", description: "We source fresh, high-quality local ingredients to ensure every meal is a delight."},
|
||||||
description: "We source fresh, high-quality local ingredients to ensure every meal is a delight.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Heart,
|
icon: Heart,
|
||||||
title: "Warm Hospitality",
|
title: "Warm Hospitality", description: "Experience genuine Indonesian hospitality with attentive and friendly service."},
|
||||||
description: "Experience genuine Indonesian hospitality with attentive and friendly service.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Why Choose Pondok Bambu Kuning?"
|
title="Why Choose Pondok Bambu Kuning?"
|
||||||
description="We are dedicated to providing an exceptional culinary and cultural experience, making every visit special."
|
description="We are dedicated to providing an exceptional culinary and cultural experience, making every visit special."
|
||||||
@@ -171,47 +129,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "dish-1",
|
id: "dish-1", name: "Nasi Goreng Spesial", price: "Rp 65.000", imageSrc: "http://img.b2bpic.net/free-photo/healthy-breakfast-set-with-egg-bacon-pancakes-orange-juice-milk-bread-coffee_74190-2222.jpg", imageAlt: "Nasi Goreng Spesial with fried egg"},
|
||||||
name: "Nasi Goreng Spesial",
|
|
||||||
price: "Rp 65.000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/healthy-breakfast-set-with-egg-bacon-pancakes-orange-juice-milk-bread-coffee_74190-2222.jpg",
|
|
||||||
imageAlt: "Nasi Goreng Spesial with fried egg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "dish-2",
|
id: "dish-2", name: "Sate Ayam Madura", price: "Rp 75.000", imageSrc: "http://img.b2bpic.net/free-photo/fried-prawns-wooden-board_140725-1360.jpg", imageAlt: "Sate Ayam Madura with peanut sauce"},
|
||||||
name: "Sate Ayam Madura",
|
|
||||||
price: "Rp 75.000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-prawns-wooden-board_140725-1360.jpg",
|
|
||||||
imageAlt: "Sate Ayam Madura with peanut sauce",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "dish-3",
|
id: "dish-3", name: "Rendang Sapi", price: "Rp 90.000", imageSrc: "http://img.b2bpic.net/free-photo/delicious-goulash-ready-dinner_23-2149370842.jpg", imageAlt: "Slow-cooked Rendang Sapi"},
|
||||||
name: "Rendang Sapi",
|
|
||||||
price: "Rp 90.000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-goulash-ready-dinner_23-2149370842.jpg",
|
|
||||||
imageAlt: "Slow-cooked Rendang Sapi",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "dish-4",
|
id: "dish-4", name: "Gado-Gado", price: "Rp 55.000", imageSrc: "http://img.b2bpic.net/free-photo/spicy-winged-bean-salad_1203-7374.jpg", imageAlt: "Gado-Gado Indonesian salad"},
|
||||||
name: "Gado-Gado",
|
|
||||||
price: "Rp 55.000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/spicy-winged-bean-salad_1203-7374.jpg",
|
|
||||||
imageAlt: "Gado-Gado Indonesian salad",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "dish-5",
|
id: "dish-5", name: "Soto Betawi", price: "Rp 70.000", imageSrc: "http://img.b2bpic.net/free-photo/kaeng-liang-bowl-with-spices-black-cement-floor_1150-35158.jpg", imageAlt: "Creamy Soto Betawi soup"},
|
||||||
name: "Soto Betawi",
|
|
||||||
price: "Rp 70.000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/kaeng-liang-bowl-with-spices-black-cement-floor_1150-35158.jpg",
|
|
||||||
imageAlt: "Creamy Soto Betawi soup",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "dish-6",
|
id: "dish-6", name: "Es Teler", price: "Rp 40.000", imageSrc: "http://img.b2bpic.net/free-photo/black-sticky-rice-custard-banana-leaf-white-plate-with-butterfly-pea-flowers_1150-20712.jpg", imageAlt: "Refreshing Es Teler dessert"},
|
||||||
name: "Es Teler",
|
|
||||||
price: "Rp 40.000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/black-sticky-rice-custard-banana-leaf-white-plate-with-butterfly-pea-flowers_1150-20712.jpg",
|
|
||||||
imageAlt: "Refreshing Es Teler dessert",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Signature Dishes"
|
title="Our Signature Dishes"
|
||||||
description="Explore a selection of our most loved and authentic Indonesian culinary creations, each a masterpiece of flavor."
|
description="Explore a selection of our most loved and authentic Indonesian culinary creations, each a masterpiece of flavor."
|
||||||
@@ -225,33 +153,13 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
team={[
|
team={[
|
||||||
{
|
{
|
||||||
id: "member-1",
|
id: "member-1", name: "Chef Budi Santoso", role: "Head Chef", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-professional-chef-posing_23-2151232212.jpg", imageAlt: "Portrait of Chef Budi Santoso"},
|
||||||
name: "Chef Budi Santoso",
|
|
||||||
role: "Head Chef",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-professional-chef-posing_23-2151232212.jpg",
|
|
||||||
imageAlt: "Portrait of Chef Budi Santoso",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "member-2",
|
id: "member-2", name: "Ayu Lestari", role: "Restaurant Manager", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-asian-woman-with-lot-cash-money-yellow_74190-15694.jpg", imageAlt: "Portrait of Ayu Lestari"},
|
||||||
name: "Ayu Lestari",
|
|
||||||
role: "Restaurant Manager",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-asian-woman-with-lot-cash-money-yellow_74190-15694.jpg",
|
|
||||||
imageAlt: "Portrait of Ayu Lestari",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "member-3",
|
id: "member-3", name: "Putu Dharma", role: "Pastry Chef", imageSrc: "http://img.b2bpic.net/free-photo/woman-puts-cinnabon-plate-family-party_169016-48405.jpg", imageAlt: "Portrait of Putu Dharma"},
|
||||||
name: "Putu Dharma",
|
|
||||||
role: "Pastry Chef",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-puts-cinnabon-plate-family-party_169016-48405.jpg",
|
|
||||||
imageAlt: "Portrait of Putu Dharma",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "member-4",
|
id: "member-4", name: "Dewi Wijaya", role: "Sous Chef", imageSrc: "http://img.b2bpic.net/free-photo/cook-putting-vegetable-plate-with-salad_23-2148040235.jpg", imageAlt: "Portrait of Dewi Wijaya"},
|
||||||
name: "Dewi Wijaya",
|
|
||||||
role: "Sous Chef",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/cook-putting-vegetable-plate-with-salad_23-2148040235.jpg",
|
|
||||||
imageAlt: "Portrait of Dewi Wijaya",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Meet Our Culinary Family"
|
title="Meet Our Culinary Family"
|
||||||
description="Behind every exquisite dish and warm smile is our dedicated team, passionate about Indonesian cuisine and hospitality."
|
description="Behind every exquisite dish and warm smile is our dedicated team, passionate about Indonesian cuisine and hospitality."
|
||||||
@@ -265,50 +173,20 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "t-1",
|
id: "t-1", name: "Sarah Johnson", handle: "@sarahj", testimonial: "Pondok Bambu Kuning offers an incredible dining experience! The Nasi Goreng was perfectly spiced, and the ambiance was so relaxing. Highly recommend!", rating: 5,
|
||||||
name: "Sarah Johnson",
|
imageSrc: "http://img.b2bpic.net/free-photo/middle-age-senior-woman-wearing-apron-uniform-red-isolated-background-doing-happy-thumbs-up-gesture-with-hand-approving-expression-looking-camera-showing-success_839833-32756.jpg", imageAlt: "Sarah Johnson"},
|
||||||
handle: "@sarahj",
|
|
||||||
testimonial: "Pondok Bambu Kuning offers an incredible dining experience! The Nasi Goreng was perfectly spiced, and the ambiance was so relaxing. Highly recommend!",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/middle-age-senior-woman-wearing-apron-uniform-red-isolated-background-doing-happy-thumbs-up-gesture-with-hand-approving-expression-looking-camera-showing-success_839833-32756.jpg",
|
|
||||||
imageAlt: "Sarah Johnson",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t-2",
|
id: "t-2", name: "Michael Chen", handle: "@mchen_foodie", testimonial: "Every dish felt like a journey through Indonesia. The Rendang Sapi was exceptionally tender and flavorful. A true gem!", rating: 5,
|
||||||
name: "Michael Chen",
|
imageSrc: "http://img.b2bpic.net/free-photo/family-reunion-celebrating-winter_23-2149628493.jpg", imageAlt: "Michael Chen"},
|
||||||
handle: "@mchen_foodie",
|
|
||||||
testimonial: "Every dish felt like a journey through Indonesia. The Rendang Sapi was exceptionally tender and flavorful. A true gem!",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/family-reunion-celebrating-winter_23-2149628493.jpg",
|
|
||||||
imageAlt: "Michael Chen",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t-3",
|
id: "t-3", name: "Emily Rodriguez", handle: "@emily.eats", testimonial: "Absolutely loved the serene setting and the authentic flavors. The Gado-Gado was fresh and delicious. We'll definitely be back!", rating: 5,
|
||||||
name: "Emily Rodriguez",
|
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-enyoing-dinner-party_23-2150717872.jpg", imageAlt: "Emily Rodriguez"},
|
||||||
handle: "@emily.eats",
|
|
||||||
testimonial: "Absolutely loved the serene setting and the authentic flavors. The Gado-Gado was fresh and delicious. We'll definitely be back!",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-enyoing-dinner-party_23-2150717872.jpg",
|
|
||||||
imageAlt: "Emily Rodriguez",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t-4",
|
id: "t-4", name: "David Kim", handle: "@davidk_reviews", testimonial: "The hospitality was as wonderful as the food. Chef Budi's Sate Ayam is a must-try. A fantastic taste of Indonesian culture.", rating: 5,
|
||||||
name: "David Kim",
|
imageSrc: "http://img.b2bpic.net/free-photo/adults-enjoying-mexican-food_23-2149663866.jpg", imageAlt: "David Kim"},
|
||||||
handle: "@davidk_reviews",
|
|
||||||
testimonial: "The hospitality was as wonderful as the food. Chef Budi's Sate Ayam is a must-try. A fantastic taste of Indonesian culture.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/adults-enjoying-mexican-food_23-2149663866.jpg",
|
|
||||||
imageAlt: "David Kim",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t-5",
|
id: "t-5", name: "Jessica Lee", handle: "@jessfoodventure", testimonial: "From the welcoming staff to the delightful desserts, Pondok Bambu Kuning exceeded all expectations. Es Teler was a perfect finish!", rating: 5,
|
||||||
name: "Jessica Lee",
|
imageSrc: "http://img.b2bpic.net/free-photo/woman-stylish-denim-jacket-coffee-shop_273609-4459.jpg", imageAlt: "Jessica Lee"},
|
||||||
handle: "@jessfoodventure",
|
|
||||||
testimonial: "From the welcoming staff to the delightful desserts, Pondok Bambu Kuning exceeded all expectations. Es Teler was a perfect finish!",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-stylish-denim-jacket-coffee-shop_273609-4459.jpg",
|
|
||||||
imageAlt: "Jessica Lee",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
showRating={true}
|
showRating={true}
|
||||||
title="What Our Guests Are Saying"
|
title="What Our Guests Are Saying"
|
||||||
@@ -321,14 +199,7 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
names={[
|
names={[
|
||||||
"Travel Advisor",
|
"Travel Advisor", "Taste of Indonesia", "Bali Eats", "Culinary Magazine", "Chef Alliance", "Halal Certified", "Local Press"]}
|
||||||
"Taste of Indonesia",
|
|
||||||
"Bali Eats",
|
|
||||||
"Culinary Magazine",
|
|
||||||
"Chef Alliance",
|
|
||||||
"Halal Certified",
|
|
||||||
"Local Press",
|
|
||||||
]}
|
|
||||||
title="Recognized for Excellence"
|
title="Recognized for Excellence"
|
||||||
description="Proudly acknowledged by leading culinary platforms and trusted reviewers for our commitment to quality and authenticity."
|
description="Proudly acknowledged by leading culinary platforms and trusted reviewers for our commitment to quality and authenticity."
|
||||||
speed={60}
|
speed={60}
|
||||||
@@ -341,20 +212,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "faq-1",
|
id: "faq-1", title: "Do you offer vegetarian options?", content: "Yes, we have a variety of delicious vegetarian dishes, including Gado-Gado and Sayur Asem. Please inform your server of any dietary preferences."},
|
||||||
title: "Do you offer vegetarian options?",
|
|
||||||
content: "Yes, we have a variety of delicious vegetarian dishes, including Gado-Gado and Sayur Asem. Please inform your server of any dietary preferences.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "faq-2",
|
id: "faq-2", title: "Can I make a reservation online?", content: "Absolutely! You can easily make a reservation through our website or by contacting us directly via phone. We recommend booking in advance, especially for weekends."},
|
||||||
title: "Can I make a reservation online?",
|
|
||||||
content: "Absolutely! You can easily make a reservation through our website or by contacting us directly via phone. We recommend booking in advance, especially for weekends.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "faq-3",
|
id: "faq-3", title: "Do you cater for events?", content: "Yes, Pondok Bambu Kuning offers catering services for various events. Please reach out to our team to discuss your specific needs and create a custom menu."},
|
||||||
title: "Do you cater for events?",
|
|
||||||
content: "Yes, Pondok Bambu Kuning offers catering services for various events. Please reach out to our team to discuss your specific needs and create a custom menu.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
sideTitle="Frequently Asked Questions"
|
sideTitle="Frequently Asked Questions"
|
||||||
sideDescription="Find quick answers to common questions about our restaurant, menu, and services."
|
sideDescription="Find quick answers to common questions about our restaurant, menu, and services."
|
||||||
@@ -366,8 +228,7 @@ export default function LandingPage() {
|
|||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "rotated-rays-static",
|
variant: "rotated-rays-static"}}
|
||||||
}}
|
|
||||||
tag="Contact Us"
|
tag="Contact Us"
|
||||||
title="Plan Your Visit or Event"
|
title="Plan Your Visit or Event"
|
||||||
description="We look forward to welcoming you to Pondok Bambu Kuning. Reach out to us for reservations, inquiries, or catering services. Our team is ready to assist you."
|
description="We look forward to welcoming you to Pondok Bambu Kuning. Reach out to us for reservations, inquiries, or catering services. Our team is ready to assist you."
|
||||||
@@ -387,13 +248,9 @@ export default function LandingPage() {
|
|||||||
logoAlt="Pondok Bambu Kuning Logo"
|
logoAlt="Pondok Bambu Kuning Logo"
|
||||||
logoText="Pondok Bambu Kuning"
|
logoText="Pondok Bambu Kuning"
|
||||||
leftLink={{
|
leftLink={{
|
||||||
text: "Privacy Policy",
|
text: "Privacy Policy", href: "#"}}
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
rightLink={{
|
rightLink={{
|
||||||
text: "Terms of Service",
|
text: "Terms of Service", href: "#"}}
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user