Merge version_1 into main #1
@@ -42,14 +42,17 @@ const dashboardData = {
|
||||
stats: [
|
||||
{
|
||||
title: "Rating", values: ["4.0", "4.0", "4.0"],
|
||||
description: "⭐ Google Rating"},
|
||||
description: "⭐ Google Rating"
|
||||
},
|
||||
{
|
||||
title: "Reviews", values: ["4,800", "4,800", "4,800"],
|
||||
description: "Happy Customers"},
|
||||
description: "Happy Customers"
|
||||
},
|
||||
{
|
||||
title: "Price Range", values: ["₹200", "₹300", "₹400"],
|
||||
valueSuffix: "per person", description: "Budget Friendly"},
|
||||
],
|
||||
valueSuffix: "per person", description: "Budget Friendly"
|
||||
},
|
||||
] as const,
|
||||
chartTitle: "Today's Orders", chartData: [
|
||||
{ value: 45 },
|
||||
{ value: 60 },
|
||||
@@ -65,55 +68,71 @@ const dashboardData = {
|
||||
};
|
||||
|
||||
const aboutDescription = [
|
||||
"Aangan Pure Veg is a family-run vegetarian restaurant located behind Bharati Vidyapeeth in Dindayal Nagar, Pune. We've been serving authentic vegetarian cuisine to families, college students, and office workers for over a decade.", "Our commitment is simple: serve delicious, affordable, and authentic vegetarian food using fresh ingredients. From traditional Maharashtrian pav bhaji to South Indian dosas, Punjabi curries to street food favorites, every dish is prepared with care and passion.", "With our convenient dine-in, takeaway, no-contact delivery, and online ordering through Swiggy, we make it easy for you to enjoy quality vegetarian meals whenever you want."];
|
||||
"Aangan Pure Veg is a family-run vegetarian restaurant located behind Bharati Vidyapeeth in Dindayal Nagar, Pune. We've been serving authentic vegetarian cuisine to families, college students, and office workers for over a decade.", "Our commitment is simple: serve delicious, affordable, and authentic vegetarian food using fresh ingredients. From traditional Maharashtrian pav bhaji to South Indian dosas, Punjabi curries to street food favorites, every dish is prepared with care and passion.", "With our convenient dine-in, takeaway, no-contact delivery, and online ordering through Swiggy, we make it easy for you to enjoy quality vegetarian meals whenever you want."
|
||||
];
|
||||
|
||||
const products = [
|
||||
{
|
||||
id: "1", name: "Veg Thali Combo", price: "₹280", variant: "Complete Meal", imageSrc: "http://img.b2bpic.net/free-photo/potato-lule-with-onion-ketchup_140725-1836.jpg", imageAlt: "Indian veg thali plate traditional meal"},
|
||||
id: "1", name: "Veg Thali Combo", price: "₹280", variant: "Complete Meal", imageSrc: "http://img.b2bpic.net/free-photo/potato-lule-with-onion-ketchup_140725-1836.jpg", imageAlt: "Indian veg thali plate traditional meal"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Pav Bhaji Special", price: "₹120", variant: "Street Food Favorite", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegetable-soup-inside-round-plate-with-seasonings-lemon-bread-dark-blue-desk_140725-50611.jpg", imageAlt: "pav bhaji street food Indian Mumbai"},
|
||||
id: "2", name: "Pav Bhaji Special", price: "₹120", variant: "Street Food Favorite", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegetable-soup-inside-round-plate-with-seasonings-lemon-bread-dark-blue-desk_140725-50611.jpg", imageAlt: "pav bhaji street food Indian Mumbai"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Paneer Crispy", price: "₹240", variant: "Appetizer", imageSrc: "http://img.b2bpic.net/free-photo/bottom-view-chicken-nuggets-lettuce-plate-black-pepper-wooden-bowl-wooden-spoons-dark-table_140725-112082.jpg", imageAlt: "crispy paneer appetizer fried cheese cubes"},
|
||||
id: "3", name: "Paneer Crispy", price: "₹240", variant: "Appetizer", imageSrc: "http://img.b2bpic.net/free-photo/bottom-view-chicken-nuggets-lettuce-plate-black-pepper-wooden-bowl-wooden-spoons-dark-table_140725-112082.jpg", imageAlt: "crispy paneer appetizer fried cheese cubes"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Masala Dosa", price: "₹150", variant: "South Indian", imageSrc: "http://img.b2bpic.net/free-photo/bread-with-sweet-sauce_1150-10986.jpg", imageAlt: "masala dosa South Indian crepe food"},
|
||||
id: "4", name: "Masala Dosa", price: "₹150", variant: "South Indian", imageSrc: "http://img.b2bpic.net/free-photo/bread-with-sweet-sauce_1150-10986.jpg", imageAlt: "masala dosa South Indian crepe food"
|
||||
},
|
||||
];
|
||||
|
||||
const testimonials = [
|
||||
{
|
||||
id: "1", name: "Priya Sharma", role: "Regular Customer", company: "Family Diner", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-bearded-man_1098-22109.jpg", imageAlt: "happy Indian woman smiling portrait photo"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-bearded-man_1098-22109.jpg", imageAlt: "happy Indian woman smiling portrait photo"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Rajesh Patel", role: "Office Worker", company: "Local Community", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-man-holding-smartphone_23-2149915890.jpg", imageAlt: "Indian man professional portrait headshot smile"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-man-holding-smartphone_23-2149915890.jpg", imageAlt: "Indian man professional portrait headshot smile"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Anjali Deshmukh", role: "College Student", company: "Budget Friendly", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-brunette-woman-touching-her-cheek-smiling-wearing-blue-shirt_291650-954.jpg", imageAlt: "young Indian woman portrait happy smile"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-brunette-woman-touching-her-cheek-smiling-wearing-blue-shirt_291650-954.jpg", imageAlt: "young Indian woman portrait happy smile"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Vikram Singh", role: "Family Diner", company: "Quality Food", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-positive-senior-man-purple-shirt-looking-camera-smiling-cheerfully-doing-ok-sign-standing-pink-background_141793-118398.jpg", imageAlt: "Indian man portrait smiling satisfied customer"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-positive-senior-man-purple-shirt-looking-camera-smiling-cheerfully-doing-ok-sign-standing-pink-background_141793-118398.jpg", imageAlt: "Indian man portrait smiling satisfied customer"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Neha Kulkarni", role: "Vegetarian", company: "Food Enthusiast", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-close-view-young-girl-happily-smiling-pink_179666-1670.jpg", imageAlt: "Indian woman portrait happy smiling vegetarian"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-close-view-young-girl-happily-smiling-pink_179666-1670.jpg", imageAlt: "Indian woman portrait happy smiling vegetarian"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Arjun Verma", role: "Regular Visitor", company: "Near Bharati", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-adult-enjoying-virtual-date_23-2149328221.jpg", imageAlt: "Indian man smiling portrait customer photo"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-adult-enjoying-virtual-date_23-2149328221.jpg", imageAlt: "Indian man smiling portrait customer photo"
|
||||
},
|
||||
];
|
||||
|
||||
const metricsData = [
|
||||
{
|
||||
id: "1", value: "4,800+", title: "Happy Customers", items: [
|
||||
"Positive Google reviews", "4.0 ⭐ Rating", "Repeat customers daily"],
|
||||
"Positive Google reviews", "4.0 ⭐ Rating", "Repeat customers daily"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "2", value: "10+", title: "Years of Excellence", items: ["Family-run restaurant", "Authentic recipes", "Local favorite status"],
|
||||
id: "2", value: "10+", title: "Years of Excellence", items: [
|
||||
"Family-run restaurant", "Authentic recipes", "Local favorite status"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "3", value: "50+", title: "Menu Items", items: [
|
||||
"North Indian specialties", "South Indian favorites", "Street food classics"],
|
||||
"North Indian specialties", "South Indian favorites", "Street food classics"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "4", value: "4 Ways", title: "To Order", items: [
|
||||
"Dine-in seating", "Takeaway pickup", "No-contact delivery", "Online via Swiggy"],
|
||||
"Dine-in seating", "Takeaway pickup", "No-contact delivery", "Online via Swiggy"
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
@@ -171,8 +190,7 @@ const contactInputs = [
|
||||
];
|
||||
|
||||
const contactTextarea = {
|
||||
name: "message", placeholder:
|
||||
"Any special requests? (Allergies, occasions, preferences...)", rows: 4,
|
||||
name: "message", placeholder: "Any special requests? (Allergies, occasions, preferences...)", rows: 4,
|
||||
required: false,
|
||||
};
|
||||
|
||||
@@ -262,11 +280,13 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
negativeCard={{
|
||||
items: [
|
||||
"Expensive restaurant meals", "Limited vegetarian options", "Slow service", "Poor ambiance", "Inauthentic recipes"],
|
||||
"Expensive restaurant meals", "Limited vegetarian options", "Slow service", "Poor ambiance", "Inauthentic recipes"
|
||||
],
|
||||
}}
|
||||
positiveCard={{
|
||||
items: [
|
||||
"Budget-friendly pricing (₹200-₹400)", "Authentic veg thalis & specialties", "Quick, family-friendly service", "Welcoming dining atmosphere", "Traditional recipes, fresh ingredients"],
|
||||
"Budget-friendly pricing (₹200-₹400)", "Authentic veg thalis & specialties", "Quick, family-friendly service", "Welcoming dining atmosphere", "Traditional recipes, fresh ingredients"
|
||||
],
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user