Merge version_1 into main #2
108
src/app/page.tsx
108
src/app/page.tsx
@@ -28,26 +28,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Elo Frut"
|
||||
/>
|
||||
@@ -55,38 +40,16 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Austin’s Favorite Fruit Truck 🍉"
|
||||
description="Authentic Mexican street snacks, elotes, and fresh fruit delights made daily in Austin, Texas."
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Now",
|
||||
href: "/menu",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Order Now", href: "/menu" }]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fruits-berries-platter-vegan-cuisine_114579-14329.jpg?_wi=1",
|
||||
imageAlt: "Fresh Fruit",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chicken-cutlets-with-corn-cream-cheese-newspaper-pan_140725-14032.jpg",
|
||||
imageAlt: "Delicious Elotes",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-mango-cocktail-mexican-mango-cocktail-black-slate-background_123827-33776.jpg",
|
||||
imageAlt: "Mangonadas",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/berry-mojito-raspberry-kiwi-mint-lime-side-view_141793-2325.jpg",
|
||||
imageAlt: "Fresh Aguas",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-glass-lemonade-caravan_23-2148659524.jpg",
|
||||
imageAlt: "Community Love",
|
||||
},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/fruits-berries-platter-vegan-cuisine_114579-14329.jpg", imageAlt: "Fresh Fruit" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-chicken-cutlets-with-corn-cream-cheese-newspaper-pan_140725-14032.jpg", imageAlt: "Delicious Elotes" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/fresh-mango-cocktail-mexican-mango-cocktail-black-slate-background_123827-33776.jpg", imageAlt: "Mangonadas" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/berry-mojito-raspberry-kiwi-mint-lime-side-view_141793-2325.jpg", imageAlt: "Fresh Aguas" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-glass-lemonade-caravan_23-2148659524.jpg", imageAlt: "Community Love" },
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
@@ -98,21 +61,9 @@ export default function LandingPage() {
|
||||
title="Why Elo Frut?"
|
||||
description="We bring the soul of Mexican street food to Austin with ingredients sourced fresh daily."
|
||||
accordionItems={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Authentic Recipes",
|
||||
content: "Generations of tradition served in every cup.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Fresh Daily",
|
||||
content: "Fruit selected and chopped every morning.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Community Rooted",
|
||||
content: "Proudly serving the Austin community.",
|
||||
},
|
||||
{ id: "1", title: "Authentic Recipes", content: "Generations of tradition served in every cup." },
|
||||
{ id: "2", title: "Fresh Daily", content: "Fruit selected and chopped every morning." },
|
||||
{ id: "3", title: "Community Rooted", content: "Proudly serving the Austin community." },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-happy-couple-home_23-2149145091.jpg"
|
||||
mediaAnimation="blur-reveal"
|
||||
@@ -124,6 +75,9 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
metrics={[{ label: "Daily Cups", value: "500+" }, { label: "Happy Customers", value: "10k+" }]}
|
||||
title="Our Impact"
|
||||
description="Growing our community, one fruit cup at a time."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -133,11 +87,19 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Our Best Sellers"
|
||||
description="Hand-picked snacks for every taste."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="ecommerce" data-section="ecommerce">
|
||||
<ProductDetailCard />
|
||||
<ProductDetailCard
|
||||
layout="default"
|
||||
name="Elo Fruit Cup"
|
||||
price="$5"
|
||||
images={["http://img.b2bpic.net/free-photo/fruits-berries-platter-vegan-cuisine_114579-14329.jpg"]}
|
||||
buttons={[{ text: "Buy Now" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
@@ -145,22 +107,10 @@ export default function LandingPage() {
|
||||
logoText="Elo Frut"
|
||||
columns={[
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
{
|
||||
label: "All Items",
|
||||
href: "/menu",
|
||||
},
|
||||
],
|
||||
title: "Menu", items: [{ label: "All Items", href: "/menu" }],
|
||||
},
|
||||
{
|
||||
title: "Find Us",
|
||||
items: [
|
||||
{
|
||||
label: "Location",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
title: "Find Us", items: [{ label: "Location", href: "/contact" }],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Elo Frut"
|
||||
|
||||
Reference in New Issue
Block a user