Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 32e9f8b6d6 | |||
| be9e94a721 |
273
src/app/page.tsx
273
src/app/page.tsx
@@ -30,21 +30,13 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Menu",
|
name: "Menu", id: "menu"},
|
||||||
id: "menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Maria's Mexican Cafe"
|
brandName="Maria's Mexican Cafe"
|
||||||
/>
|
/>
|
||||||
@@ -53,112 +45,60 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitTestimonial
|
<HeroSplitTestimonial
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
title="Real Mexican Flavor. Made Fresh Daily."
|
title="Real Mexican Flavor. Made Fresh Daily."
|
||||||
description="From breakfast tacos to slow-cooked barbacoa—every bite feels like home."
|
description="From breakfast tacos to slow-cooked barbacoa—every bite feels like home."
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
name: "Sarah Miller",
|
name: "Sarah Miller", handle: "@foodie", testimonial: "The best tacos in Texas! Truly authentic and fresh.", rating: 5,
|
||||||
handle: "@foodie",
|
imageSrc: "http://img.b2bpic.net/free-photo/homemade-chicken-tacos-food-recipe-idea_53876-105979.jpg?_wi=1", imageAlt: "fresh mexican street tacos close up"},
|
||||||
testimonial: "The best tacos in Texas! Truly authentic and fresh.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/homemade-chicken-tacos-food-recipe-idea_53876-105979.jpg?_wi=1",
|
|
||||||
imageAlt: "fresh mexican street tacos close up",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "John Doe",
|
name: "John Doe", handle: "@local", testimonial: "Generous portions and incredible service.", rating: 5,
|
||||||
handle: "@local",
|
imageSrc: "http://img.b2bpic.net/free-photo/beach-party-with-food-drinks-wooden-plank_23-2147645495.jpg?_wi=1", imageAlt: "fresh mexican street tacos close up"},
|
||||||
testimonial: "Generous portions and incredible service.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beach-party-with-food-drinks-wooden-plank_23-2147645495.jpg?_wi=1",
|
|
||||||
imageAlt: "fresh mexican street tacos close up",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Emily R.",
|
name: "Emily R.", handle: "@eats", testimonial: "My go-to spot for breakfast tacos every single morning.", rating: 5,
|
||||||
handle: "@eats",
|
imageSrc: "http://img.b2bpic.net/free-photo/raw-cooked-steak-served-with-potato-tomato-sauce_140725-2565.jpg?_wi=1", imageAlt: "fresh mexican street tacos close up"},
|
||||||
testimonial: "My go-to spot for breakfast tacos every single morning.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/raw-cooked-steak-served-with-potato-tomato-sauce_140725-2565.jpg?_wi=1",
|
|
||||||
imageAlt: "fresh mexican street tacos close up",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Mike Smith",
|
name: "Mike Smith", handle: "@tacoLover", testimonial: "Exceptional flavors and high-quality ingredients.", rating: 5,
|
||||||
handle: "@tacoLover",
|
imageSrc: "http://img.b2bpic.net/free-photo/mexican-food_23-2148159787.jpg?_wi=1", imageAlt: "fresh mexican street tacos close up"},
|
||||||
testimonial: "Exceptional flavors and high-quality ingredients.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/mexican-food_23-2148159787.jpg?_wi=1",
|
|
||||||
imageAlt: "fresh mexican street tacos close up",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Anna Cruz",
|
name: "Anna Cruz", handle: "@chef", testimonial: "Just like my Abuela used to make. Incredible.", rating: 5,
|
||||||
handle: "@chef",
|
imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-homemade-delicious-crispy-potato-chips-brown-pot-fallen-oil-bottle-ketchup-tomatoes-potato-garlic-dark-background_140725-140873.jpg?_wi=1", imageAlt: "fresh mexican street tacos close up"},
|
||||||
testimonial: "Just like my Abuela used to make. Incredible.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-homemade-delicious-crispy-potato-chips-brown-pot-fallen-oil-bottle-ketchup-tomatoes-potato-garlic-dark-background_140725-140873.jpg?_wi=1",
|
|
||||||
imageAlt: "fresh mexican street tacos close up",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Order Online",
|
text: "Order Online", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "View Menu",
|
text: "View Menu", href: "#menu"},
|
||||||
href: "#menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Call Now",
|
text: "Call Now", href: "tel:9797326278"},
|
||||||
href: "tel:9797326278",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/homemade-chicken-tacos-food-recipe-idea_53876-105979.jpg?_wi=2"
|
imageSrc="http://img.b2bpic.net/free-photo/homemade-chicken-tacos-food-recipe-idea_53876-105979.jpg?_wi=2"
|
||||||
imageAlt="Fresh Mexican street tacos"
|
imageAlt="Fresh Mexican street tacos"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/meat-fajitas-with-lavash-table_140725-4813.jpg",
|
src: "http://img.b2bpic.net/free-photo/meat-fajitas-with-lavash-table_140725-4813.jpg", alt: "Customer portrait 1"},
|
||||||
alt: "Customer portrait 1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/delicious-bbq-skewer-with-beef-vegetables_1147-71.jpg",
|
src: "http://img.b2bpic.net/free-photo/delicious-bbq-skewer-with-beef-vegetables_1147-71.jpg", alt: "Customer portrait 2"},
|
||||||
alt: "Customer portrait 2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/sizzling-steak-fajitas-with-bell-peppers-hot-skillet_84443-84858.jpg",
|
src: "http://img.b2bpic.net/free-photo/sizzling-steak-fajitas-with-bell-peppers-hot-skillet_84443-84858.jpg", alt: "Customer portrait 3"},
|
||||||
alt: "Customer portrait 3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/top-view-fresh-mexican-food-with-chilli_23-2148614414.jpg",
|
src: "http://img.b2bpic.net/free-photo/top-view-fresh-mexican-food-with-chilli_23-2148614414.jpg", alt: "Customer portrait 4"},
|
||||||
alt: "Customer portrait 4",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/natural-fresh-mexican-ingredients_23-2147640342.jpg",
|
src: "http://img.b2bpic.net/free-photo/natural-fresh-mexican-ingredients_23-2147640342.jpg", alt: "Customer portrait 5"},
|
||||||
alt: "Customer portrait 5",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Locally Sourced"},
|
||||||
text: "Locally Sourced",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Hand-Pressed Tortillas"},
|
||||||
text: "Hand-Pressed Tortillas",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Authentic Spices"},
|
||||||
text: "Authentic Spices",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Family Recipes"},
|
||||||
text: "Family Recipes",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Made Fresh Daily"},
|
||||||
text: "Made Fresh Daily",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -168,14 +108,7 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
names={[
|
names={[
|
||||||
"Google",
|
"Google", "Yelp", "TripAdvisor", "Local Eats", "Foodie Weekly", "Town Guide", "DineOut"]}
|
||||||
"Yelp",
|
|
||||||
"TripAdvisor",
|
|
||||||
"Local Eats",
|
|
||||||
"Foodie Weekly",
|
|
||||||
"Town Guide",
|
|
||||||
"DineOut",
|
|
||||||
]}
|
|
||||||
title="4.0 Rating | 480+ Reviews"
|
title="4.0 Rating | 480+ Reviews"
|
||||||
description="“Excellent service, great food, and generous portions.”"
|
description="“Excellent service, great food, and generous portions.”"
|
||||||
/>
|
/>
|
||||||
@@ -188,32 +121,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "f1",
|
id: "f1", title: "Authentic Recipes", tags: [
|
||||||
title: "Authentic Recipes",
|
"Traditional", "Fresh"],
|
||||||
tags: [
|
imageSrc: "http://img.b2bpic.net/free-photo/beach-party-with-food-drinks-wooden-plank_23-2147645495.jpg?_wi=2"},
|
||||||
"Traditional",
|
|
||||||
"Fresh",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beach-party-with-food-drinks-wooden-plank_23-2147645495.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f2",
|
id: "f2", title: "Generous Portions", tags: [
|
||||||
title: "Generous Portions",
|
"Filling", "Satisfying"],
|
||||||
tags: [
|
imageSrc: "http://img.b2bpic.net/free-photo/raw-cooked-steak-served-with-potato-tomato-sauce_140725-2565.jpg?_wi=2"},
|
||||||
"Filling",
|
|
||||||
"Satisfying",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/raw-cooked-steak-served-with-potato-tomato-sauce_140725-2565.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f3",
|
id: "f3", title: "Breakfast to Dinner", tags: [
|
||||||
title: "Breakfast to Dinner",
|
"All Day", "Variety"],
|
||||||
tags: [
|
imageSrc: "http://img.b2bpic.net/free-photo/mexican-food_23-2148159787.jpg?_wi=2"},
|
||||||
"All Day",
|
|
||||||
"Variety",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/mexican-food_23-2148159787.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Why People Love Maria's"
|
title="Why People Love Maria's"
|
||||||
description="We treat every customer like family."
|
description="We treat every customer like family."
|
||||||
@@ -228,41 +146,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", name: "Barbacoa Tacos", price: "$12.00", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-homemade-delicious-crispy-potato-chips-brown-pot-fallen-oil-bottle-ketchup-tomatoes-potato-garlic-dark-background_140725-140873.jpg?_wi=2"},
|
||||||
name: "Barbacoa Tacos",
|
|
||||||
price: "$12.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-homemade-delicious-crispy-potato-chips-brown-pot-fallen-oil-bottle-ketchup-tomatoes-potato-garlic-dark-background_140725-140873.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", name: "Breakfast Tacos", price: "$8.00", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-tortillas-with-meat-vegetables_23-2148614372.jpg"},
|
||||||
name: "Breakfast Tacos",
|
|
||||||
price: "$8.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-tortillas-with-meat-vegetables_23-2148614372.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", name: "Street Tacos", price: "$10.00", imageSrc: "http://img.b2bpic.net/free-photo/side-view-stuffed-with-zucchini-with-slice-cheese-cucumber-blue-plate_141793-6117.jpg"},
|
||||||
name: "Street Tacos",
|
|
||||||
price: "$10.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-stuffed-with-zucchini-with-slice-cheese-cucumber-blue-plate_141793-6117.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p4",
|
id: "p4", name: "Chips & Salsa", price: "$5.00", imageSrc: "http://img.b2bpic.net/free-photo/tortilla-with-meat-vegetables-top-view_23-2148750447.jpg"},
|
||||||
name: "Chips & Salsa",
|
|
||||||
price: "$5.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/tortilla-with-meat-vegetables-top-view_23-2148750447.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p5",
|
id: "p5", name: "Classic Plates", price: "$15.00", imageSrc: "http://img.b2bpic.net/free-photo/three-delicious-mexican-tacos-with-fresh-toppings_84443-82579.jpg"},
|
||||||
name: "Classic Plates",
|
|
||||||
price: "$15.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/three-delicious-mexican-tacos-with-fresh-toppings_84443-82579.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p6",
|
id: "p6", name: "Fajita Platter", price: "$18.00", imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-with-delicious-tacos_23-2150878353.jpg"},
|
||||||
name: "Fajita Platter",
|
|
||||||
price: "$18.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-with-delicious-tacos_23-2150878353.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Customer Favorites"
|
title="Customer Favorites"
|
||||||
description="Everything made fresh to order."
|
description="Everything made fresh to order."
|
||||||
@@ -276,37 +170,23 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "b1",
|
id: "b1", title: "Egg & Potato", tags: [
|
||||||
title: "Egg & Potato",
|
"Classic"],
|
||||||
tags: [
|
imageSrc: "http://img.b2bpic.net/free-photo/traditional-mexican-breakfast-red-chilaquiles-with-egg-yellow-background_123827-30646.jpg"},
|
||||||
"Classic",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/traditional-mexican-breakfast-red-chilaquiles-with-egg-yellow-background_123827-30646.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "b2",
|
id: "b2", title: "Beans & Cheese", tags: [
|
||||||
title: "Beans & Cheese",
|
"Simple"],
|
||||||
tags: [
|
imageSrc: "http://img.b2bpic.net/free-photo/english-breakfast-dish_1203-9632.jpg"},
|
||||||
"Simple",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/english-breakfast-dish_1203-9632.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "b3",
|
id: "b3", title: "Bacon & Egg", tags: [
|
||||||
title: "Bacon & Egg",
|
"Favorite"],
|
||||||
tags: [
|
imageSrc: "http://img.b2bpic.net/free-photo/tacos_23-2148159754.jpg"},
|
||||||
"Favorite",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/tacos_23-2148159754.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Start Your Day the Right Way"
|
title="Start Your Day the Right Way"
|
||||||
description="Locals love our breakfast tacos—fresh, filling, and made exactly how you like them."
|
description="Locals love our breakfast tacos—fresh, filling, and made exactly how you like them."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Order Breakfast Now",
|
text: "Order Breakfast Now", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -318,17 +198,11 @@ export default function LandingPage() {
|
|||||||
description="At Maria’s, every guest is treated like family. Whether you’re grabbing a quick bite at the drive-through or sitting down with loved ones, you’ll always feel at home."
|
description="At Maria’s, every guest is treated like family. Whether you’re grabbing a quick bite at the drive-through or sitting down with loved ones, you’ll always feel at home."
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
value: "100%",
|
value: "100%", title: "Authentic"},
|
||||||
title: "Authentic",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
value: "480+",
|
value: "480+", title: "Reviews"},
|
||||||
title: "Reviews",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
value: "Daily",
|
value: "Daily", title: "Fresh"},
|
||||||
title: "Fresh",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="slide-up"
|
||||||
@@ -341,20 +215,15 @@ export default function LandingPage() {
|
|||||||
<ContactCTA
|
<ContactCTA
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
tag="Visit Us"
|
tag="Visit Us"
|
||||||
title="Hungry Yet?"
|
title="Hungry Yet?"
|
||||||
description="1221 Fannin St, Columbus, TX | (979) 732-6278"
|
description="1221 Fannin St, Columbus, TX | (979) 732-6278"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Order Now",
|
text: "Order Now", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Visit Us",
|
text: "Get Directions", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -363,29 +232,19 @@ export default function LandingPage() {
|
|||||||
<FooterBase
|
<FooterBase
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Restaurant",
|
title: "Restaurant", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Menu",
|
label: "Menu", href: "#menu"},
|
||||||
href: "#menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Order Online",
|
label: "Order Online", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Directions",
|
label: "Directions", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Call Us",
|
label: "Call Us", href: "tel:9797326278"},
|
||||||
href: "tel:9797326278",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user