Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| eabad45d9a | |||
| 9e7926c873 |
121
src/app/page.tsx
121
src/app/page.tsx
@@ -29,13 +29,9 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Today's Menu",
|
||||
id: "#menu",
|
||||
},
|
||||
name: "Today's Menu", id: "#menu"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
brandName="Khamang The Taste Of Home"
|
||||
/>
|
||||
@@ -44,31 +40,20 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
variant: "sparkles-gradient"}}
|
||||
title="Taste of Home, Every Day."
|
||||
description="Authentic, freshly prepared meals served with love in the heart of Ravet. View our daily menu and join our family dining experience."
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=1",
|
||||
imageAlt: "Fresh home cooked meal",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=1", imageAlt: "Fresh home cooked meal"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=2",
|
||||
imageAlt: "Traditional indian thali",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=2", imageAlt: "Traditional indian thali"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=3",
|
||||
imageAlt: "Healthy mess food",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=3", imageAlt: "Healthy mess food"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=4",
|
||||
imageAlt: "Dal tadka bowl",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=4", imageAlt: "Dal tadka bowl"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=5",
|
||||
imageAlt: "Fresh roti stack",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=5", imageAlt: "Fresh roti stack"},
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
@@ -82,29 +67,14 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Breakfast",
|
||||
price: "8:00 AM",
|
||||
variant: "Nutritious start to your day",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=6",
|
||||
},
|
||||
id: "1", name: "Monday Menu", price: "Mixed Veg + Dal Tadka", variant: "Healthy start to the week", imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=6"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Lunch",
|
||||
price: "1:00 PM",
|
||||
variant: "Wholesome home-cooked meal",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=7",
|
||||
},
|
||||
id: "2", name: "Tuesday Menu", price: "Paneer Masala + Roti", variant: "Delicious comfort food", imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=7"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Dinner",
|
||||
price: "8:00 PM",
|
||||
variant: "Light and nourishing dinner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=8",
|
||||
},
|
||||
id: "3", name: "Wednesday Menu", price: "Aloo Gobi + Rice", variant: "Light and flavorful meal", imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=8"},
|
||||
]}
|
||||
title="Today's Menu"
|
||||
description="Select a date to view your daily meal schedule. Healthy, wholesome, and delicious."
|
||||
title="Daily Mess Menu"
|
||||
description="Our chefs curate a new nutritious menu daily, bringing you the authentic taste of home in Ravet."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -117,38 +87,16 @@ export default function LandingPage() {
|
||||
description="Choose the meal plan that fits your lifestyle. Flexible options for students and working professionals."
|
||||
plans={[
|
||||
{
|
||||
id: "p1",
|
||||
tag: "Monthly",
|
||||
price: "₹3500",
|
||||
period: "/month",
|
||||
description: "Perfect for daily commuters",
|
||||
button: {
|
||||
text: "Choose Monthly",
|
||||
href: "#",
|
||||
},
|
||||
featuresTitle: "Includes",
|
||||
features: [
|
||||
"Lunch & Dinner",
|
||||
"24/7 Support",
|
||||
"Free Delivery",
|
||||
],
|
||||
id: "p1", tag: "Monthly", price: "₹3500", period: "/month", description: "Perfect for daily commuters", button: {
|
||||
text: "Choose Monthly", href: "#"},
|
||||
featuresTitle: "Includes", features: [
|
||||
"Lunch & Dinner", "24/7 Support", "Free Delivery"],
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
tag: "Weekly",
|
||||
price: "₹900",
|
||||
period: "/week",
|
||||
description: "Try us out for a week",
|
||||
button: {
|
||||
text: "Choose Weekly",
|
||||
href: "#",
|
||||
},
|
||||
featuresTitle: "Includes",
|
||||
features: [
|
||||
"Lunch Only",
|
||||
"Flexible Dates",
|
||||
"Authentic Taste",
|
||||
],
|
||||
id: "p2", tag: "Weekly", price: "₹900", period: "/week", description: "Try us out for a week", button: {
|
||||
text: "Choose Weekly", href: "#"},
|
||||
featuresTitle: "Includes", features: [
|
||||
"Lunch Only", "Flexible Dates", "Authentic Taste"],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -164,17 +112,9 @@ export default function LandingPage() {
|
||||
description="The passionate hands behind your favorite meals."
|
||||
members={[
|
||||
{
|
||||
id: "m1",
|
||||
name: "Sunita Patil",
|
||||
role: "Head Chef",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=9",
|
||||
},
|
||||
id: "m1", name: "Sunita Patil", role: "Head Chef", imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=9"},
|
||||
{
|
||||
id: "m2",
|
||||
name: "Rahul Deshmukh",
|
||||
role: "Operations Manager",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=10",
|
||||
},
|
||||
id: "m2", name: "Rahul Deshmukh", role: "Operations Manager", imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-seasonings-with-cooked-rice-meatballs-black_140725-103965.jpg?_wi=10"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -183,16 +123,13 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Visit Us"
|
||||
title="Join Our Mess"
|
||||
description="Located in Ravet, Pune. Ready to enjoy home-style food? Contact us for registration and membership queries."
|
||||
buttons={[
|
||||
{
|
||||
text: "Register Now",
|
||||
href: "#",
|
||||
},
|
||||
text: "Register Now", href: "#"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -201,13 +138,9 @@ export default function LandingPage() {
|
||||
<FooterLogoReveal
|
||||
logoText="Khamang"
|
||||
leftLink={{
|
||||
text: "Privacy Policy",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Privacy Policy", href: "#"}}
|
||||
rightLink={{
|
||||
text: "© 2024 Khamang Mess",
|
||||
href: "#",
|
||||
}}
|
||||
text: "© 2024 Khamang Mess", href: "#"}}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user