17 Commits

Author SHA1 Message Date
f000ef5d78 Update src/app/page.tsx 2026-06-04 17:56:10 +00:00
7204dd3cd0 Merge version_2 into main
Merge version_2 into main
2026-06-04 17:51:18 +00:00
e9879a2b17 Update src/app/page.tsx 2026-06-04 17:51:15 +00:00
5ac40939d2 Merge version_1 into main
Merge version_1 into main
2026-06-04 17:45:35 +00:00
916a4cead7 Merge version_1 into main
Merge version_1 into main
2026-06-04 17:44:41 +00:00
9c47298242 Merge version_1 into main
Merge version_1 into main
2026-06-04 17:42:42 +00:00
ce4279ab86 Merge version_1 into main
Merge version_1 into main
2026-06-04 17:41:56 +00:00
0916e5d314 Merge version_1 into main
Merge version_1 into main
2026-06-04 17:40:33 +00:00
b87da4b80e Merge version_1 into main
Merge version_1 into main
2026-06-04 17:38:55 +00:00
d9bf86156f Merge version_1 into main
Merge version_1 into main
2026-06-04 17:37:52 +00:00
0a70f20ca8 Merge version_1 into main
Merge version_1 into main
2026-06-04 17:36:54 +00:00
4ee5b2be8d Merge version_1 into main
Merge version_1 into main
2026-06-04 17:35:22 +00:00
961f7124e6 Merge version_1 into main
Merge version_1 into main
2026-06-04 17:34:07 +00:00
39fa10f15b Merge version_1 into main
Merge version_1 into main
2026-06-04 17:26:43 +00:00
479fb162ce Merge version_1 into main
Merge version_1 into main
2026-06-04 17:25:41 +00:00
8f0d99c67b Merge version_1 into main
Merge version_1 into main
2026-06-04 17:24:34 +00:00
48d6012ad7 Merge version_1 into main
Merge version_1 into main
2026-06-04 17:23:00 +00:00

View File

@@ -15,6 +15,63 @@ import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCar
import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
export default function LandingPage() { export default function LandingPage() {
const navItems = [
{
name: "Home", id: "/"
},
{
name: "About", id: "/#about"
},
{
name: "Products", id: "/products"
},
{
name: "Why Choose Us", id: "/#features"
},
{
name: "Testimonials", id: "/#testimonials"
},
{
name: "Gallery", id: "/#gallery"
},
{
name: "FAQ", id: "/#faq"
},
{
name: "Contact", id: "/#contact"
}
];
const footerColumns = [
{
title: "Menu", items: [
{ label: "Huevos Rancheros", href: "/products" },
{ label: "Carne Asada Burrito", href: "/products" },
{ label: "Homemade Tortillas", href: "/products" },
{ label: "Sushi Platters", href: "/products" },
{ label: "Pancake Breakfast", href: "/products" },
{ label: "Nachos & Tacos", href: "/products" },
{ label: "Order Pickup", href: "/#contact" }
]
},
{
title: "About Us", items: [
{ label: "Our Story", href: "/#about" },
{ label: "Our Values", href: "/#features" },
{ label: "Testimonials", href: "/#testimonials" },
{ label: "Gallery", href: "/#gallery" }
]
},
{
title: "Support", items: [
{ label: "Contact Us", href: "/#contact" },
{ label: "FAQ", href: "/#faq" },
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }
]
}
];
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="text-stagger" defaultButtonVariant="text-stagger"
@@ -31,26 +88,9 @@ export default function LandingPage() {
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={navItems}
{
name: "Home", id: "#home"},
{
name: "About", id: "#about"},
{
name: "Favorites", id: "#favorites"},
{
name: "Why Choose Us", id: "#features"},
{
name: "Testimonials", id: "#testimonials"},
{
name: "Gallery", id: "#gallery"},
{
name: "FAQ", id: "#faq"},
{
name: "Contact", id: "#contact"},
]}
button={{ button={{
text: "Order Now", href: "#contact"}} text: "Order Now", href: "/#contact"}}
brandName="EL SNAPPY" brandName="EL SNAPPY"
/> />
</div> </div>
@@ -61,9 +101,9 @@ export default function LandingPage() {
description="A South Phoenix favorite serving homemade Mexican classics, breakfast favorites, fresh sushi creations, and unforgettable hospitality for over a decade." description="A South Phoenix favorite serving homemade Mexican classics, breakfast favorites, fresh sushi creations, and unforgettable hospitality for over a decade."
buttons={[ buttons={[
{ {
text: "View Menu", href: "#favorites"}, text: "View Menu", href: "/products"},
{ {
text: "Order Pickup", href: "#contact"}, text: "Order Pickup", href: "/#contact"},
]} ]}
slides={[ slides={[
{ {
@@ -78,12 +118,13 @@ export default function LandingPage() {
imageSrc: "http://img.b2bpic.net/free-photo/buddha-bowl-rice-with-salmon-radish-red-cabbage-edamame-beans-sesame-seeds_127032-3117.jpg", imageAlt: "Fresh sushi platter"}, imageSrc: "http://img.b2bpic.net/free-photo/buddha-bowl-rice-with-salmon-radish-red-cabbage-edamame-beans-sesame-seeds_127032-3117.jpg", imageAlt: "Fresh sushi platter"},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/clipboard-near-sauces-food_23-2147740819.jpg", imageAlt: "Variety of tacos"} imageSrc: "http://img.b2bpic.net/free-photo/clipboard-near-sauces-food_23-2147740819.jpg", imageAlt: "Variety of tacos"}
]} /> ]}
/>
</div> </div>
<div id="social-proof" data-section="social-proof"> <div id="social-proof" data-section="social-proof">
<SocialProofOne <SocialProofOne
names={["Yelp", "Google Reviews", "DoorDash", "Uber Eats"]} names={["Yelp", "Google Reviews"]}
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
title="★★★★★ 4.4 Stars • 255+ Reviews" title="★★★★★ 4.4 Stars • 255+ Reviews"
@@ -96,7 +137,7 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
title="A Hidden Gem Worth Finding" title="A Hidden Gem Worth Finding"
description={[ description={[
"Some restaurants chase trends. We chase flavor. For years, El Snappy Mexican Food has been serving authentic homemade meals to families, workers, neighbors, and visitors looking for real food at honest prices.", "From handmade tortillas and sizzling breakfast plates to fresh sushi platters and family recipes, every dish is prepared with the same care we'd serve in our own home. Because around here, you're not just a customer. You're family.", "More Than Mexican Food: Fresh sushi platters, breakfast favorites, lunch specials, family meals, and homemade comfort food all under one roof. Perfect for: Breakfast, Lunch, Family dinners, Catering, Game day platters, Takeout." "Some restaurants chase trends. We chase flavor. For years, El Snappy Mexican Food has been serving authentic homemade meals to families, workers, neighbors, and visitors looking for real food at honest prices.", "From handmade tortillas and sizzling breakfast plates to fresh sushi platters and family recipes, every dish is prepared with the same care we'd serve in our own home. Because around here, you're not just a customer. You're family.", "More Than Mexican Food: Fresh sushi platters, breakfast favorites, lunch specials, family meals, catering, game day platters, takeout."
]} ]}
/> />
</div> </div>
@@ -125,7 +166,7 @@ export default function LandingPage() {
reviewCount: "30+", imageSrc: "http://img.b2bpic.net/free-photo/front-view-yummy-fruity-pancakes-with-cup-tea-dark-space_140725-95444.jpg", imageAlt: "Pancake Breakfast"}, reviewCount: "30+", imageSrc: "http://img.b2bpic.net/free-photo/front-view-yummy-fruity-pancakes-with-cup-tea-dark-space_140725-95444.jpg", imageAlt: "Pancake Breakfast"},
{ {
id: "prod-6", brand: "El Snappy", name: "Nachos & Tacos", price: "Market Price", rating: 5, id: "prod-6", brand: "El Snappy", name: "Nachos & Tacos", price: "Market Price", rating: 5,
reviewCount: "65+", imageSrc: "http://img.b2bpic.net/free-photo/close-up-blackboard-near-food_23-2147740816.jpg", imageAlt: "Nachos & Tacos"} reviewCount: "65+", imageSrc: "http://img.b2bpic.net/free-photo/close-up-blackboard-near-sauces-food_23-2147740816.jpg", imageAlt: "Nachos & Tacos"}
]} ]}
title="Signature Favorites" title="Signature Favorites"
description="Discover the dishes that keep our guests coming back for more." description="Discover the dishes that keep our guests coming back for more."
@@ -258,44 +299,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseReveal <FooterBaseReveal
logoText="EL SNAPPY" logoText="EL SNAPPY"
columns={[ columns={footerColumns}
{
title: "Menu", items: [
{
label: "View Full Menu", href: "#favorites"},
{
label: "Order Pickup", href: "#contact"},
{
label: "Daily Specials", href: "#"},
{
label: "Sushi Creations", href: "#favorites"}
]
},
{
title: "About Us", items: [
{
label: "Our Story", href: "#about"},
{
label: "Our Values", href: "#features"},
{
label: "Testimonials", href: "#testimonials"},
{
label: "Gallery", href: "#gallery"}
]
},
{
title: "Support", items: [
{
label: "Contact Us", href: "#contact"},
{
label: "FAQ", href: "#faq"},
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"}
]
}
]}
copyrightText="© 2024 El Snappy Mexican Food. All rights reserved." copyrightText="© 2024 El Snappy Mexican Food. All rights reserved."
/> />
</div> </div>