Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f8fbbe57d4 | |||
| 77b27c2fbe | |||
| fb794341a1 | |||
| 2bd07343f5 | |||
| 62fdb74ee6 | |||
| 6112e16da3 | |||
| 62e7613ece | |||
| 621f7801db | |||
| a49fc9857f | |||
| 0bcbad605f | |||
| b51979dd1e | |||
| 339a3dee7b | |||
| 1de135e9c8 | |||
| cdc23f25f2 | |||
| 24192d8ce9 | |||
| 6cc58cb2da |
70
src/app/contact/page.tsx
Normal file
70
src/app/contact/page.tsx
Normal 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: "/"},
|
||||||
|
{
|
||||||
|
name: "Menu", id: "/menu"},
|
||||||
|
{
|
||||||
|
name: "Gallery", id: "/gallery"},
|
||||||
|
{
|
||||||
|
name: "About Us", id: "/#about"},
|
||||||
|
{
|
||||||
|
name: "Contact", id: "/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
76
src/app/gallery/page.tsx
Normal 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: "/"},
|
||||||
|
{
|
||||||
|
name: "Menu", id: "/menu"},
|
||||||
|
{
|
||||||
|
name: "Gallery", id: "/gallery"},
|
||||||
|
{
|
||||||
|
name: "About Us", id: "/#about"},
|
||||||
|
{
|
||||||
|
name: "Contact", id: "/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
85
src/app/menu/page.tsx
Normal 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: "/"},
|
||||||
|
{
|
||||||
|
name: "Menu", id: "/menu"},
|
||||||
|
{
|
||||||
|
name: "Gallery", id: "/gallery"},
|
||||||
|
{
|
||||||
|
name: "About Us", id: "/#about"},
|
||||||
|
{
|
||||||
|
name: "Contact", id: "/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>
|
||||||
|
);
|
||||||
|
}
|
||||||
199
src/app/page.tsx
199
src/app/page.tsx
@@ -30,52 +30,35 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "/"},
|
||||||
id: "home",
|
|
||||||
href: "/",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Menu",
|
name: "Menu", id: "/menu"},
|
||||||
id: "menu",
|
|
||||||
href: "/menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About Us",
|
name: "Gallery", id: "/gallery"},
|
||||||
id: "about",
|
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "About Us", id: "/#about"},
|
||||||
id: "contact",
|
{
|
||||||
href: "/contact",
|
name: "Contact", id: "/contact"},
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="The Marwari Platter"
|
brandName="The Marwari Platter"
|
||||||
button={{
|
button={{
|
||||||
text: "Reserve a Table",
|
text: "Reserve a Table", href: "/contact"}}
|
||||||
href: "/contact",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardScroll
|
<HeroBillboardScroll
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
title="Authentic Marwadi Delights"
|
title="Authentic Marwadi Delights"
|
||||||
description="Experience the rich culinary heritage of Rajasthan, crafted with traditional recipes and a touch of modern elegance."
|
description="Experience the rich culinary heritage of Rajasthan, crafted with traditional recipes and a touch of modern elegance."
|
||||||
tag="Taste of Rajasthan"
|
tag="Taste of Rajasthan"
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "View Menu",
|
text: "View Menu", href: "/menu"},
|
||||||
href: "/menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Reserve a Table",
|
text: "Reserve a Table", href: "/contact"},
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
imageSrc="http://img.b2bpic.net/free-vector/gradient-indian-restaurant-landing-page_23-2149440851.jpg"
|
imageSrc="http://img.b2bpic.net/free-vector/gradient-indian-restaurant-landing-page_23-2149440851.jpg"
|
||||||
@@ -105,40 +88,16 @@ export default function LandingPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
tag: "Tradition",
|
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"},
|
||||||
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,
|
id: 2,
|
||||||
tag: "Quality",
|
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"},
|
||||||
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,
|
id: 3,
|
||||||
tag: "Experience",
|
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"},
|
||||||
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,
|
id: 4,
|
||||||
tag: "Hospitality",
|
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: "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?"
|
title="Why Dine With Us?"
|
||||||
description="Discover the unique elements that make our Marwadi restaurant a culinary destination for authentic Rajasthani delights."
|
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}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "dal-bati-churma",
|
id: "dal-bati-churma", brand: "Marwadi Classic", name: "Dal Bati Churma", price: "$18.99", rating: 5,
|
||||||
brand: "Marwadi Classic",
|
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"},
|
||||||
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",
|
id: "gatte-ki-sabzi", brand: "Vegetarian Delight", name: "Gatte Ki Sabzi", price: "$15.50", rating: 4,
|
||||||
brand: "Vegetarian Delight",
|
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"},
|
||||||
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",
|
id: "ker-sangri", brand: "Desert Treasure", name: "Ker Sangri", price: "$16.75", rating: 5,
|
||||||
brand: "Desert Treasure",
|
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"},
|
||||||
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",
|
id: "laal-maas", brand: "Chef's Special", name: "Laal Maas", price: "$22.00", rating: 5,
|
||||||
brand: "Chef's Special",
|
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"},
|
||||||
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",
|
id: "mirchi-vada", brand: "Snack Time", name: "Mirchi Vada", price: "$9.99", rating: 4,
|
||||||
brand: "Snack Time",
|
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"},
|
||||||
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"
|
title="Our Signature Dishes"
|
||||||
description="Indulge in a curated selection of Marwadi classics and our chef's specials, meticulously prepared for your pleasure."
|
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}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Priya Sharma", role: "Food Critic", company: "Taste Trails", rating: 5,
|
||||||
name: "Priya Sharma",
|
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"},
|
||||||
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",
|
id: "2", name: "Rajesh Kumar", role: "Entrepreneur", company: "Global Flavors", rating: 5,
|
||||||
name: "Rajesh Kumar",
|
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-couple-taking-selfie-with-cell-phone-while-eating-restaurant_637285-9043.jpg", imageAlt: "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",
|
id: "3", name: "Ananya Singh", role: "Travel Blogger", company: "Wanderlust Bites", rating: 5,
|
||||||
name: "Ananya Singh",
|
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"},
|
||||||
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",
|
id: "4", name: "Vikram Patel", role: "Culinary Enthusiast", company: "Spice Journey", rating: 5,
|
||||||
name: "Vikram Patel",
|
imageSrc: "http://img.b2bpic.net/free-photo/couple-having-date-together-luxurious-restaurant_23-2150517421.jpg", imageAlt: "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={[
|
kpiItems={[
|
||||||
{
|
{
|
||||||
id: "1",
|
value: "4.9/5", label: "Average Rating"},
|
||||||
value: "4.9/5",
|
|
||||||
description: "Average Rating",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
value: "200+", label: "Customer Reviews"},
|
||||||
value: "200+",
|
|
||||||
description: "Happy Customers",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
value: "50+", label: "Awards Won"}
|
||||||
value: "50+",
|
|
||||||
description: "Signature Dishes",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="What Our Guests Say"
|
title="What Our Guests Say"
|
||||||
description="Hear from our beloved patrons who have experienced the warmth and flavors of our Marwadi hospitality."
|
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}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
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."},
|
||||||
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",
|
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."},
|
||||||
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",
|
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."},
|
||||||
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",
|
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: "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"
|
title="Frequently Asked Questions"
|
||||||
description="Find answers to common queries about reservations, dining, and our special offerings."
|
description="Find answers to common queries about reservations, dining, and our special offerings."
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f7f6f7;
|
--background: #f5f4f0;
|
||||||
--card: #ffffff;
|
--card: #ffffff;
|
||||||
--foreground: #0c1325;
|
--foreground: #1a1a1a;
|
||||||
--primary-cta: #0b07ff;
|
--primary-cta: #2c2c2c;
|
||||||
--primary-cta-text: #f7f6f7;
|
--primary-cta-text: #f7f6f7;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #f5f4f0;
|
||||||
--secondary-cta-text: #0c1325;
|
--secondary-cta-text: #0c1325;
|
||||||
--accent: #93b7ff;
|
--accent: #8a8a8a;
|
||||||
--background-accent: #a8bae8;
|
--background-accent: #e8e6e1;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user