Merge version_1 into main #2
@@ -19,8 +19,7 @@ export default function AboutPage() {
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Restaurant",
|
||||
items: [
|
||||
title: "Restaurant", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Menu", href: "/menu" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
@@ -28,8 +27,7 @@ export default function AboutPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{ label: "Phone: +1 574-297-5075", href: "tel:+15742975075" },
|
||||
{ label: "Address: 111 N Main St", href: "#" },
|
||||
{ label: "Monticello, IN 47960", href: "#" },
|
||||
@@ -37,8 +35,7 @@ export default function AboutPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Hours",
|
||||
items: [
|
||||
title: "Hours", items: [
|
||||
{ label: "Mon-Thu: 11am-9pm", href: "#" },
|
||||
{ label: "Fri-Sat: 11am-10pm", href: "#" },
|
||||
{ label: "Sunday: 12pm-9pm", href: "#" },
|
||||
@@ -54,7 +51,7 @@ export default function AboutPage() {
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="floatingGradient"
|
||||
background="circleGradient"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="layered"
|
||||
@@ -68,9 +65,7 @@ export default function AboutPage() {
|
||||
id: item.id,
|
||||
}))}
|
||||
button={{
|
||||
text: "Order Online",
|
||||
href: "/order",
|
||||
}}
|
||||
text: "Order Online", href: "/order"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -86,9 +81,10 @@ export default function AboutPage() {
|
||||
{ value: "50,000+", title: "Happy Customers Served" },
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chef-cooking-kitchen-while-wearing-professional-attire_23-2151208275.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chef-cooking-kitchen-while-wearing-professional-attire_23-2151208275.jpg"
|
||||
imageAlt="Cazadores Kitchen"
|
||||
mediaAnimation="blur-reveal"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -105,25 +101,13 @@ export default function AboutPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "25",
|
||||
title: "Years Operating",
|
||||
description: "Proudly serving authentic Mexican cuisine since 1999",
|
||||
icon: Calendar,
|
||||
id: "1", value: "25", title: "Years Operating", description: "Proudly serving authentic Mexican cuisine since 1999", icon: Calendar,
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "100",
|
||||
title: "Dishes on Menu",
|
||||
description: "Authentic recipes and creative specials daily",
|
||||
icon: UtensilsCrossed,
|
||||
id: "2", value: "100", title: "Dishes on Menu", description: "Authentic recipes and creative specials daily", icon: UtensilsCrossed,
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "5",
|
||||
title: "Star Rating",
|
||||
description: "Rated highest by local customers and reviews",
|
||||
icon: Star,
|
||||
id: "3", value: "5", title: "Star Rating", description: "Rated highest by local customers and reviews", icon: Star,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
128
src/app/page.tsx
128
src/app/page.tsx
@@ -23,8 +23,7 @@ export default function HomePage() {
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Restaurant",
|
||||
items: [
|
||||
title: "Restaurant", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Menu", href: "/menu" },
|
||||
{ label: "Gallery", href: "gallery" },
|
||||
@@ -32,8 +31,7 @@ export default function HomePage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{ label: "Phone: +1 574-297-5075", href: "tel:+15742975075" },
|
||||
{ label: "Address: 111 N Main St", href: "#" },
|
||||
{ label: "Monticello, IN 47960", href: "#" },
|
||||
@@ -41,8 +39,7 @@ export default function HomePage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Hours",
|
||||
items: [
|
||||
title: "Hours", items: [
|
||||
{ label: "Mon-Thu: 11am-9pm", href: "#" },
|
||||
{ label: "Fri-Sat: 11am-10pm", href: "#" },
|
||||
{ label: "Sunday: 12pm-9pm", href: "#" },
|
||||
@@ -58,7 +55,7 @@ export default function HomePage() {
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="floatingGradient"
|
||||
background="circleGradient"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="layered"
|
||||
@@ -72,9 +69,7 @@ export default function HomePage() {
|
||||
id: item.id,
|
||||
}))}
|
||||
button={{
|
||||
text: "Order Online",
|
||||
href: "/order",
|
||||
}}
|
||||
text: "Order Online", href: "/order"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -82,20 +77,14 @@ export default function HomePage() {
|
||||
<HeroSplitKpi
|
||||
title="Authentic Mexican Food in Monticello"
|
||||
description="Experience the taste of Mexico with our fresh tacos, savory burritos, delicious enchiladas, and refreshing margaritas. Made with authentic recipes and the finest ingredients."
|
||||
background={{ variant: "floatingGradient" }}
|
||||
background={{ variant: "glowing-orb" }}
|
||||
kpis={[
|
||||
{
|
||||
value: "25+",
|
||||
label: "Years Serving the Community",
|
||||
},
|
||||
value: "25+", label: "Years Serving the Community"},
|
||||
{
|
||||
value: "100%",
|
||||
label: "Fresh Ingredients Daily",
|
||||
},
|
||||
value: "100%", label: "Fresh Ingredients Daily"},
|
||||
{
|
||||
value: "1000+",
|
||||
label: "Happy Customers Monthly",
|
||||
},
|
||||
value: "1000+", label: "Happy Customers Monthly"},
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
tag="Family-Owned Restaurant"
|
||||
@@ -103,16 +92,12 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Online",
|
||||
href: "/order",
|
||||
},
|
||||
text: "Order Online", href: "/order"},
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
text: "View Menu", href: "/menu"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-delicious-meal-with-tacos_23-2148764341.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-delicious-meal-with-tacos_23-2148764341.jpg"
|
||||
imageAlt="Cazadores Mexican Restaurant"
|
||||
mediaAnimation="blur-reveal"
|
||||
imagePosition="right"
|
||||
@@ -132,29 +117,11 @@ export default function HomePage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
products={[
|
||||
{
|
||||
id: "tacos",
|
||||
name: "Authentic Street Tacos",
|
||||
price: "$8.99",
|
||||
variant: "Carnitas or Al Pastor",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tortilla-with-vegetables-meat_23-2148629316.jpg?_wi=1",
|
||||
imageAlt: "Street Tacos",
|
||||
},
|
||||
id: "tacos", name: "Authentic Street Tacos", price: "$8.99", variant: "Carnitas or Al Pastor", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tortilla-with-vegetables-meat_23-2148629316.jpg", imageAlt: "Street Tacos"},
|
||||
{
|
||||
id: "burritos",
|
||||
name: "Grilled Burritos Supreme",
|
||||
price: "$11.99",
|
||||
variant: "Chicken, Beef, or Veggie",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-pouring-mayonnaise-into-chicken-doner-bread-with-pickles_140725-12185.jpg?_wi=1",
|
||||
imageAlt: "Grilled Burrito",
|
||||
},
|
||||
id: "burritos", name: "Grilled Burritos Supreme", price: "$11.99", variant: "Chicken, Beef, or Veggie", imageSrc: "http://img.b2bpic.net/free-photo/side-view-pouring-mayonnaise-into-chicken-doner-bread-with-pickles_140725-12185.jpg", imageAlt: "Grilled Burrito"},
|
||||
{
|
||||
id: "enchiladas",
|
||||
name: "Enchiladas Verdes",
|
||||
price: "$12.99",
|
||||
variant: "Cheese or Chicken",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thai-food-shrimp-spicy-fish-sauce_1150-35468.jpg?_wi=1",
|
||||
imageAlt: "Enchiladas Verdes",
|
||||
},
|
||||
id: "enchiladas", name: "Enchiladas Verdes", price: "$12.99", variant: "Cheese or Chicken", imageSrc: "http://img.b2bpic.net/free-photo/thai-food-shrimp-spicy-fish-sauce_1150-35468.jpg", imageAlt: "Enchiladas Verdes"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -170,41 +137,13 @@ export default function HomePage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Best Authentic Mexican Food Around",
|
||||
quote: "Cazadores serves the most authentic and delicious Mexican food in Monticello. The tacos are incredible and the service is always friendly and welcoming. We visit every week!",
|
||||
name: "Maria Garcia",
|
||||
role: "Regular Customer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-attractive-woman-elegant-hotel-cafeteria_657883-403.jpg",
|
||||
imageAlt: "Maria Garcia",
|
||||
},
|
||||
id: "1", title: "Best Authentic Mexican Food Around", quote: "Cazadores serves the most authentic and delicious Mexican food in Monticello. The tacos are incredible and the service is always friendly and welcoming. We visit every week!", name: "Maria Garcia", role: "Regular Customer", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-attractive-woman-elegant-hotel-cafeteria_657883-403.jpg", imageAlt: "Maria Garcia"},
|
||||
{
|
||||
id: "2",
|
||||
title: "Family Favorite for Years",
|
||||
quote: "This restaurant has been our family's favorite for over 10 years. The margaritas are perfect, the food is always fresh, and the atmosphere is warm and inviting. Highly recommended!",
|
||||
name: "James Wilson",
|
||||
role: "Local Resident",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-gesture-successful-collar-mixed_1262-1193.jpg",
|
||||
imageAlt: "James Wilson",
|
||||
},
|
||||
id: "2", title: "Family Favorite for Years", quote: "This restaurant has been our family's favorite for over 10 years. The margaritas are perfect, the food is always fresh, and the atmosphere is warm and inviting. Highly recommended!", name: "James Wilson", role: "Local Resident", imageSrc: "http://img.b2bpic.net/free-photo/professional-gesture-successful-collar-mixed_1262-1193.jpg", imageAlt: "James Wilson"},
|
||||
{
|
||||
id: "3",
|
||||
title: "Outstanding Quality and Service",
|
||||
quote: "The enchiladas here are the best I've ever had. Every dish is prepared with such care and attention to detail. The staff remembers our family by name. Simply amazing!",
|
||||
name: "Rosa Martinez",
|
||||
role: "Loyal Customer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-woman_23-2147823623.jpg",
|
||||
imageAlt: "Rosa Martinez",
|
||||
},
|
||||
id: "3", title: "Outstanding Quality and Service", quote: "The enchiladas here are the best I've ever had. Every dish is prepared with such care and attention to detail. The staff remembers our family by name. Simply amazing!", name: "Rosa Martinez", role: "Loyal Customer", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-woman_23-2147823623.jpg", imageAlt: "Rosa Martinez"},
|
||||
{
|
||||
id: "4",
|
||||
title: "Perfect for Any Occasion",
|
||||
quote: "Whether it's a casual lunch or special celebration, Cazadores never disappoints. The food quality is consistent, portions are generous, and prices are fair. Best Mexican restaurant in town!",
|
||||
name: "David Chen",
|
||||
role: "Business Owner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-joyful-bearded-guy-posing-indoors_74855-2696.jpg",
|
||||
imageAlt: "David Chen",
|
||||
},
|
||||
id: "4", title: "Perfect for Any Occasion", quote: "Whether it's a casual lunch or special celebration, Cazadores never disappoints. The food quality is consistent, portions are generous, and prices are fair. Best Mexican restaurant in town!", name: "David Chen", role: "Business Owner", imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-joyful-bearded-guy-posing-indoors_74855-2696.jpg", imageAlt: "David Chen"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -218,18 +157,15 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
value: "25+",
|
||||
title: "Years of Excellence",
|
||||
},
|
||||
value: "25+", title: "Years of Excellence"},
|
||||
{
|
||||
value: "50,000+",
|
||||
title: "Happy Customers Served",
|
||||
},
|
||||
value: "50,000+", title: "Happy Customers Served"},
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chef-cooking-kitchen-while-wearing-professional-attire_23-2151208275.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chef-cooking-kitchen-while-wearing-professional-attire_23-2151208275.jpg"
|
||||
imageAlt="Cazadores Kitchen"
|
||||
mediaAnimation="blur-reveal"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -246,25 +182,13 @@ export default function HomePage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "25",
|
||||
title: "Years Operating",
|
||||
description: "Proudly serving authentic Mexican cuisine since 1999",
|
||||
icon: Calendar,
|
||||
id: "1", value: "25", title: "Years Operating", description: "Proudly serving authentic Mexican cuisine since 1999", icon: Calendar,
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "100",
|
||||
title: "Dishes on Menu",
|
||||
description: "Authentic recipes and creative specials daily",
|
||||
icon: UtensilsCrossed,
|
||||
id: "2", value: "100", title: "Dishes on Menu", description: "Authentic recipes and creative specials daily", icon: UtensilsCrossed,
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "5",
|
||||
title: "Star Rating",
|
||||
description: "Rated highest by local customers and reviews",
|
||||
icon: Star,
|
||||
id: "3", value: "5", title: "Star Rating", description: "Rated highest by local customers and reviews", icon: Star,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user