Merge version_2 into main #2

Merged
bender merged 5 commits from version_2 into main 2026-03-26 08:40:53 +00:00
5 changed files with 276 additions and 166 deletions

70
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,70 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="compact"
sizing="mediumSizeLargeTitles"
background="noiseDiagonalGradient"
cardStyle="gradient-radial"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home", id: "home", href: "/"},
{
name: "Menu", id: "menu", href: "/menu"},
{
name: "Gallery", id: "gallery", href: "/gallery"},
{
name: "About Us", id: "about", href: "/#about"},
{
name: "Contact", id: "contact", href: "/contact"},
]}
brandName="The Marwari Platter"
button={{
text: "Reserve a Table", href: "/contact"}}
/>
</div>
<div id="contact-form" data-section="contact-form">
<ContactSplitForm
title="Reservations & Contact Us"
description="Planning a visit or have a question? Fill out the form below to make a reservation or get in touch with our team. We look forward to hearing from you!"
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true },
{ name: "phone", type: "tel", placeholder: "Phone Number" },
{ name: "date", type: "date", placeholder: "Preferred Date" },
{ name: "time", type: "time", placeholder: "Preferred Time" },
{ name: "guests", type: "number", placeholder: "Number of Guests" }
]}
textarea={{
name: "message", placeholder: "Special requests or questions...", rows: 5,
}}
buttonText="Submit Reservation / Inquiry"
imageSrc="http://img.b2bpic.net/free-photo/empty-restaurant-tables-luxurious-hotel-lobby_23-2149303503.jpg?_wi=1"
imageAlt="Elegant restaurant interior with empty tables"
mediaPosition="right"
mediaAnimation="slide-up"
useInvertedBackground={false}
onSubmit={(data) => console.log("Form submitted:", data)}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

76
src/app/gallery/page.tsx Normal file
View File

@@ -0,0 +1,76 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
export default function GalleryPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="compact"
sizing="mediumSizeLargeTitles"
background="noiseDiagonalGradient"
cardStyle="gradient-radial"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home", id: "home", href: "/"},
{
name: "Menu", id: "menu", href: "/menu"},
{
name: "Gallery", id: "gallery", href: "/gallery"},
{
name: "About Us", id: "about", href: "/#about"},
{
name: "Contact", id: "contact", href: "/contact"},
]}
brandName="The Marwari Platter"
button={{
text: "Reserve a Table", href: "/contact"}}
/>
</div>
<div id="gallery-content" data-section="gallery-content">
<ProductCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
{
id: "gallery-1", name: "Exquisite Dining Area", brand: "", price: "", rating: 0,
reviewCount: "", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-indian-restaurant-facebook-cover-template_23-2149505009.jpg?_wi=1", imageAlt: "Elegant restaurant interior with traditional decor"},
{
id: "gallery-2", name: "Chef's Special Creation", brand: "", price: "", rating: 0,
reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-chicken-curry_23-2149372993.jpg", imageAlt: "Close-up of a beautifully plated Marwadi dish"},
{
id: "gallery-3", name: "Traditional Marwadi Thali", brand: "", price: "", rating: 0,
reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/indian-cuisine-collection-with-curry-rice_23-2149386763.jpg", imageAlt: "Full Marwadi Thali with various dishes"},
{
id: "gallery-4", name: "Warm and Inviting Ambiance", brand: "", price: "", rating: 0,
reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/empty-restaurant-tables-luxurious-hotel-lobby_23-2149303503.jpg?_wi=2", imageAlt: "Restaurant interior with soft lighting and comfortable seating"},
{
id: "gallery-5", name: "Freshly Prepared Ingredients", brand: "", price: "", rating: 0,
reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-vegetables-dark-space_140725-76041.jpg?_wi=1", imageAlt: "Assortment of fresh spices and vegetables"},
{
id: "gallery-6", name: "Authentic Rajasthani Sweets", brand: "", price: "", rating: 0,
reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/traditional-delicious-indian-sweets-food_181624-52319.jpg", imageAlt: "Variety of colorful Indian sweets"}
]}
title="Our Restaurant Gallery"
description="A visual journey through our restaurant's ambiance, signature dishes, and culinary artistry."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

85
src/app/menu/page.tsx Normal file
View File

@@ -0,0 +1,85 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
export default function MenuPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="compact"
sizing="mediumSizeLargeTitles"
background="noiseDiagonalGradient"
cardStyle="gradient-radial"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home", id: "home", href: "/"},
{
name: "Menu", id: "menu", href: "/menu"},
{
name: "Gallery", id: "gallery", href: "/gallery"},
{
name: "About Us", id: "about", href: "/#about"},
{
name: "Contact", id: "contact", href: "/contact"},
]}
brandName="The Marwari Platter"
button={{
text: "Reserve a Table", href: "/contact"}}
/>
</div>
<div id="menu-content" data-section="menu-content">
<ProductCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{
id: "dal-bati-churma", brand: "Classic", name: "Dal Bati Churma", price: "$18.99", rating: 5,
reviewCount: "120 reviews", imageSrc: "http://img.b2bpic.net/free-photo/overhead-shot-deliciously-baked-cake-round-mold-wooden-surface_181624-32236.jpg", imageAlt: "Traditional Dal Bati Churma platter"},
{
id: "gatte-ki-sabzi", brand: "Vegetarian", name: "Gatte Ki Sabzi", price: "$15.50", rating: 4,
reviewCount: "85 reviews", imageSrc: "http://img.b2bpic.net/free-photo/top-view-sliced-cucumbers-with-seasonings-grey-background-salad-health-vegetables-meal-food_140725-80220.jpg", imageAlt: "Gatte Ki Sabzi, chickpea flour dumplings curry"},
{
id: "ker-sangri", brand: "Desert Special", name: "Ker Sangri", price: "$16.75", rating: 5,
reviewCount: "60 reviews", imageSrc: "http://img.b2bpic.net/free-photo/still-life-recipe-with-plantain_23-2151062797.jpg", imageAlt: "Ker Sangri, a Rajasthani dry vegetable dish"},
{
id: "laal-maas", brand: "Non-Veg Delicacy", name: "Laal Maas", price: "$22.00", rating: 5,
reviewCount: "150 reviews", imageSrc: "http://img.b2bpic.net/free-photo/chicken-salad-with-vegetables-potato-chips-plate_140725-9207.jpg", imageAlt: "Laal Maas, spicy Rajasthani lamb curry"},
{
id: "mirchi-vada", brand: "Snack", name: "Mirchi Vada", price: "$9.99", rating: 4,
reviewCount: "95 reviews", imageSrc: "http://img.b2bpic.net/free-photo/bunch-sweet-dried-figs-placed-blue-plate_114579-32225.jpg", imageAlt: "Mirchi Vada, Rajasthani chili fritters"},
{
id: "mohan-thal", brand: "Dessert", name: "Mohan Thal", price: "$8.00", rating: 5,
reviewCount: "70 reviews", imageSrc: "http://img.b2bpic.net/free-photo/traditional-delicious-indian-sweets-food_181624-52319.jpg", imageAlt: "Mohan Thal sweet dish"},
{
id: "malpua", brand: "Dessert", name: "Malpua", price: "$7.50", rating: 4,
reviewCount: "55 reviews", imageSrc: "http://img.b2bpic.net/free-photo/traditional-delicious-indian-sweets-food_181624-52319.jpg", imageAlt: "Malpua sweet dish"},
{
id: "kadhi", brand: "Vegetarian", name: "Rajasthani Kadhi", price: "$14.00", rating: 4,
reviewCount: "40 reviews", imageSrc: "http://img.b2bpic.net/free-photo/top-view-spices-curry-powder-spoon_140725-80219.jpg", imageAlt: "Rajasthani Kadhi"},
{
id: "safed-maas", brand: "Non-Veg Delicacy", name: "Safed Maas", price: "$21.00", rating: 5,
reviewCount: "90 reviews", imageSrc: "http://img.b2bpic.net/free-photo/chicken-salad-with-vegetables-potato-chips-plate_140725-9207.jpg", imageAlt: "Safed Maas, mild lamb curry"},
]}
title="Our Extensive Menu"
description="Explore the full range of authentic Marwadi dishes, from traditional classics to chef's innovative creations."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -30,52 +30,35 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "home",
href: "/",
},
name: "Home", id: "home", href: "/"},
{
name: "Menu",
id: "menu",
href: "/menu",
},
name: "Menu", id: "menu", href: "/menu"},
{
name: "About Us",
id: "about",
href: "/about",
},
name: "Gallery", id: "gallery", href: "/gallery"},
{
name: "Contact",
id: "contact",
href: "/contact",
},
name: "About Us", id: "about", href: "/#about"},
{
name: "Contact", id: "contact", href: "/contact"},
]}
brandName="The Marwari Platter"
button={{
text: "Reserve a Table",
href: "/contact",
}}
text: "Reserve a Table", href: "/contact"}}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardScroll
background={{
variant: "plain",
}}
variant: "plain"}}
title="Authentic Marwadi Delights"
description="Experience the rich culinary heritage of Rajasthan, crafted with traditional recipes and a touch of modern elegance."
tag="Taste of Rajasthan"
tagAnimation="slide-up"
buttons={[
{
text: "View Menu",
href: "/menu",
},
text: "View Menu", href: "/menu"},
{
text: "Reserve a Table",
href: "/contact",
},
text: "Reserve a Table", href: "/contact"},
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-vector/gradient-indian-restaurant-landing-page_23-2149440851.jpg"
@@ -105,40 +88,16 @@ export default function LandingPage() {
features={[
{
id: 1,
tag: "Tradition",
title: "Authentic Recipes",
subtitle: "Generations of Flavor",
description: "Savor dishes prepared with time-honored family recipes, passed down through generations for an unmatched authentic taste.",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-vegetables-dark-space_140725-76041.jpg?_wi=1",
imageAlt: "Traditional Indian spices and ingredients",
},
tag: "Tradition", title: "Authentic Recipes", subtitle: "Generations of Flavor", description: "Savor dishes prepared with time-honored family recipes, passed down through generations for an unmatched authentic taste.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-vegetables-dark-space_140725-76041.jpg?_wi=1", imageAlt: "Traditional Indian spices and ingredients"},
{
id: 2,
tag: "Quality",
title: "Fresh Ingredients",
subtitle: "Locally Sourced Goodness",
description: "We commit to using only the freshest, locally sourced ingredients to ensure every dish is vibrant, wholesome, and delicious.",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-vegetables-dark-space_140725-76041.jpg?_wi=2",
imageAlt: "Fresh vegetables and spices",
},
tag: "Quality", title: "Fresh Ingredients", subtitle: "Locally Sourced Goodness", description: "We commit to using only the freshest, locally sourced ingredients to ensure every dish is vibrant, wholesome, and delicious.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-vegetables-dark-space_140725-76041.jpg?_wi=2", imageAlt: "Fresh vegetables and spices"},
{
id: 3,
tag: "Experience",
title: "Exquisite Ambiance",
subtitle: "Rajasthani Elegance",
description: "Dine in an atmosphere of refined Rajasthani elegance, where traditional decor meets modern comfort for a truly special experience.",
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-indian-restaurant-facebook-cover-template_23-2149505009.jpg?_wi=1",
imageAlt: "Elegant Rajasthani dining room interior",
},
tag: "Experience", title: "Exquisite Ambiance", subtitle: "Rajasthani Elegance", description: "Dine in an atmosphere of refined Rajasthani elegance, where traditional decor meets modern comfort for a truly special experience.", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-indian-restaurant-facebook-cover-template_23-2149505009.jpg?_wi=1", imageAlt: "Elegant Rajasthani dining room interior"},
{
id: 4,
tag: "Hospitality",
title: "Warm Service",
subtitle: "Guest-First Philosophy",
description: "Our dedicated team provides attentive and warm service, ensuring every guest feels welcomed and cared for throughout their visit.",
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-indian-restaurant-facebook-cover-template_23-2149505009.jpg?_wi=2",
imageAlt: "Warmly lit dining area Indian style",
},
tag: "Hospitality", title: "Warm Service", subtitle: "Guest-First Philosophy", description: "Our dedicated team provides attentive and warm service, ensuring every guest feels welcomed and cared for throughout their visit.", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-indian-restaurant-facebook-cover-template_23-2149505009.jpg?_wi=2", imageAlt: "Warmly lit dining area Indian style"},
]}
title="Why Dine With Us?"
description="Discover the unique elements that make our Marwadi restaurant a culinary destination for authentic Rajasthani delights."
@@ -153,55 +112,20 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "dal-bati-churma",
brand: "Marwadi Classic",
name: "Dal Bati Churma",
price: "$18.99",
rating: 5,
reviewCount: "120 reviews",
imageSrc: "http://img.b2bpic.net/free-photo/overhead-shot-deliciously-baked-cake-round-mold-wooden-surface_181624-32236.jpg",
imageAlt: "Traditional Dal Bati Churma platter",
},
id: "dal-bati-churma", brand: "Marwadi Classic", name: "Dal Bati Churma", price: "$18.99", rating: 5,
reviewCount: "120 reviews", imageSrc: "http://img.b2bpic.net/free-photo/overhead-shot-deliciously-baked-cake-round-mold-wooden-surface_181624-32236.jpg", imageAlt: "Traditional Dal Bati Churma platter"},
{
id: "gatte-ki-sabzi",
brand: "Vegetarian Delight",
name: "Gatte Ki Sabzi",
price: "$15.50",
rating: 4,
reviewCount: "85 reviews",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-sliced-cucumbers-with-seasonings-grey-background-salad-health-vegetables-meal-food_140725-80220.jpg",
imageAlt: "Gatte Ki Sabzi, chickpea flour dumplings curry",
},
id: "gatte-ki-sabzi", brand: "Vegetarian Delight", name: "Gatte Ki Sabzi", price: "$15.50", rating: 4,
reviewCount: "85 reviews", imageSrc: "http://img.b2bpic.net/free-photo/top-view-sliced-cucumbers-with-seasonings-grey-background-salad-health-vegetables-meal-food_140725-80220.jpg", imageAlt: "Gatte Ki Sabzi, chickpea flour dumplings curry"},
{
id: "ker-sangri",
brand: "Desert Treasure",
name: "Ker Sangri",
price: "$16.75",
rating: 5,
reviewCount: "60 reviews",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-recipe-with-plantain_23-2151062797.jpg",
imageAlt: "Ker Sangri, a Rajasthani dry vegetable dish",
},
id: "ker-sangri", brand: "Desert Treasure", name: "Ker Sangri", price: "$16.75", rating: 5,
reviewCount: "60 reviews", imageSrc: "http://img.b2bpic.net/free-photo/still-life-recipe-with-plantain_23-2151062797.jpg", imageAlt: "Ker Sangri, a Rajasthani dry vegetable dish"},
{
id: "laal-maas",
brand: "Chef's Special",
name: "Laal Maas",
price: "$22.00",
rating: 5,
reviewCount: "150 reviews",
imageSrc: "http://img.b2bpic.net/free-photo/chicken-salad-with-vegetables-potato-chips-plate_140725-9207.jpg",
imageAlt: "Laal Maas, spicy Rajasthani lamb curry",
},
id: "laal-maas", brand: "Chef's Special", name: "Laal Maas", price: "$22.00", rating: 5,
reviewCount: "150 reviews", imageSrc: "http://img.b2bpic.net/free-photo/chicken-salad-with-vegetables-potato-chips-plate_140725-9207.jpg", imageAlt: "Laal Maas, spicy Rajasthani lamb curry"},
{
id: "mirchi-vada",
brand: "Snack Time",
name: "Mirchi Vada",
price: "$9.99",
rating: 4,
reviewCount: "95 reviews",
imageSrc: "http://img.b2bpic.net/free-photo/bunch-sweet-dried-figs-placed-blue-plate_114579-32225.jpg",
imageAlt: "Mirchi Vada, Rajasthani chili fritters",
},
id: "mirchi-vada", brand: "Snack Time", name: "Mirchi Vada", price: "$9.99", rating: 4,
reviewCount: "95 reviews", imageSrc: "http://img.b2bpic.net/free-photo/bunch-sweet-dried-figs-placed-blue-plate_114579-32225.jpg", imageAlt: "Mirchi Vada, Rajasthani chili fritters"},
]}
title="Our Signature Dishes"
description="Indulge in a curated selection of Marwadi classics and our chef's specials, meticulously prepared for your pleasure."
@@ -215,58 +139,25 @@ export default function LandingPage() {
useInvertedBackground={true}
testimonials={[
{
id: "1",
name: "Priya Sharma",
role: "Food Critic",
company: "Taste Trails",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-indian-woman-wear-elegant-black-saree-sitting-restaurant-with-glass-juice-hand-she-smiles-show-ok-sign_627829-831.jpg",
imageAlt: "Priya Sharma",
},
id: "1", name: "Priya Sharma", role: "Food Critic", company: "Taste Trails", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-indian-woman-wear-elegant-black-saree-sitting-restaurant-with-glass-juice-hand-she-smiles-show-ok-sign_627829-831.jpg", imageAlt: "Priya Sharma"},
{
id: "2",
name: "Rajesh Kumar",
role: "Entrepreneur",
company: "Global Flavors",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-couple-taking-selfie-with-cell-phone-while-eating-restaurant_637285-9043.jpg",
imageAlt: "Rajesh Kumar",
},
id: "2", name: "Rajesh Kumar", role: "Entrepreneur", company: "Global Flavors", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-couple-taking-selfie-with-cell-phone-while-eating-restaurant_637285-9043.jpg", imageAlt: "Rajesh Kumar"},
{
id: "3",
name: "Ananya Singh",
role: "Travel Blogger",
company: "Wanderlust Bites",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/indoor-portrait-o-pretty-blonde-woman-drinking-tasty-cappuccino-restaurant-enjoy-her-breakfast-elegant-outfit-natural-make-up_291049-2723.jpg",
imageAlt: "Ananya Singh",
},
id: "3", name: "Ananya Singh", role: "Travel Blogger", company: "Wanderlust Bites", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/indoor-portrait-o-pretty-blonde-woman-drinking-tasty-cappuccino-restaurant-enjoy-her-breakfast-elegant-outfit-natural-make-up_291049-2723.jpg", imageAlt: "Ananya Singh"},
{
id: "4",
name: "Vikram Patel",
role: "Culinary Enthusiast",
company: "Spice Journey",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/couple-having-date-together-luxurious-restaurant_23-2150517421.jpg",
imageAlt: "Vikram Patel",
},
id: "4", name: "Vikram Patel", role: "Culinary Enthusiast", company: "Spice Journey", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/couple-having-date-together-luxurious-restaurant_23-2150517421.jpg", imageAlt: "Vikram Patel"},
]}
kpiItems={[
{
id: "1",
value: "4.9/5",
description: "Average Rating",
},
id: "1", value: "4.9/5", description: "Average Rating"},
{
id: "2",
value: "200+",
description: "Happy Customers",
},
id: "2", value: "200+", description: "Happy Customers"},
{
id: "3",
value: "50+",
description: "Signature Dishes",
},
id: "3", value: "50+", description: "Signature Dishes"},
]}
title="What Our Guests Say"
description="Hear from our beloved patrons who have experienced the warmth and flavors of our Marwadi hospitality."
@@ -279,25 +170,13 @@ export default function LandingPage() {
useInvertedBackground={false}
faqs={[
{
id: "1",
title: "Do you offer vegetarian and vegan options?",
content: "Yes, our Marwadi cuisine is rich in vegetarian dishes, and we also offer a selection of vegan options. Please inform your server about any dietary preferences.",
},
id: "1", title: "Do you offer vegetarian and vegan options?", content: "Yes, our Marwadi cuisine is rich in vegetarian dishes, and we also offer a selection of vegan options. Please inform your server about any dietary preferences."},
{
id: "2",
title: "How can I make a reservation?",
content: "You can easily make a reservation through our website's 'Reserve a Table' section, or by calling us directly during business hours. We recommend booking in advance, especially for weekend evenings.",
},
id: "2", title: "How can I make a reservation?", content: "You can easily make a reservation through our website's 'Reserve a Table' section, or by calling us directly during business hours. We recommend booking in advance, especially for weekend evenings."},
{
id: "3",
title: "Do you offer catering services or private events?",
content: "Yes, we offer catering for special events and have private dining spaces available for booking. Please contact our events coordinator to discuss your requirements and customize a menu.",
},
id: "3", title: "Do you offer catering services or private events?", content: "Yes, we offer catering for special events and have private dining spaces available for booking. Please contact our events coordinator to discuss your requirements and customize a menu."},
{
id: "4",
title: "What are your operating hours and location?",
content: "We are open from 12 PM to 10 PM, Tuesday through Sunday. We are located at 123 Heritage Lane, Jaipur. You can find detailed directions on our 'Contact Us' page.",
},
id: "4", title: "What are your operating hours and location?", content: "We are open from 12 PM to 10 PM, Tuesday through Sunday. We are located at 123 Heritage Lane, Jaipur. You can find detailed directions on our 'Contact Us' page."},
]}
title="Frequently Asked Questions"
description="Find answers to common queries about reservations, dining, and our special offerings."

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f7f6f7;
--background: #f5f4f0;
--card: #ffffff;
--foreground: #0c1325;
--primary-cta: #0b07ff;
--foreground: #1a1a1a;
--primary-cta: #2c2c2c;
--primary-cta-text: #f7f6f7;
--secondary-cta: #ffffff;
--secondary-cta: #f5f4f0;
--secondary-cta-text: #0c1325;
--accent: #93b7ff;
--background-accent: #a8bae8;
--accent: #8a8a8a;
--background-accent: #e8e6e1;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);