2 Commits

Author SHA1 Message Date
a0a17edf36 Merge version_2 into main
Merge version_2 into main
2026-04-05 22:21:48 +00:00
48c30deadb Update src/app/page.tsx 2026-04-05 22:21:45 +00:00

View File

@@ -30,21 +30,13 @@ export default function LandingPage() {
<NavbarStyleApple <NavbarStyleApple
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "hero"},
id: "hero",
},
{ {
name: "Menu", name: "Menu", id: "menu"},
id: "menu",
},
{ {
name: "Reviews", name: "Reviews", id: "testimonials"},
id: "testimonials",
},
{ {
name: "Contact", name: "Contact", id: "contact"},
id: "contact",
},
]} ]}
brandName="Mama Mias" brandName="Mama Mias"
/> />
@@ -53,82 +45,51 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSplitKpi <HeroSplitKpi
background={{ background={{
variant: "radial-gradient", variant: "radial-gradient"}}
}}
title="Authentic Italian Pizza & Crispy Wings in Philly" title="Authentic Italian Pizza & Crispy Wings in Philly"
description="Serving fresh, made-to-order comfort food at 6832 Bustleton Ave. Experience local favorites, homemade sauces, and friendly service every single day." description="Serving fresh, made-to-order comfort food at 6832 Bustleton Ave. Experience local favorites, homemade sauces, and friendly service every single day."
kpis={[ kpis={[
{ {
value: "4.2", value: "4.2", label: "Google Rating"},
label: "Google Rating",
},
{ {
value: "346+", value: "346+", label: "Customer Reviews"},
label: "Customer Reviews",
},
{ {
value: "Daily", value: "Daily", label: "Freshly Baked"},
label: "Freshly Baked",
},
]} ]}
enableKpiAnimation={true} enableKpiAnimation={true}
buttons={[ buttons={[
{ {
text: "View Menu", text: "View Menu", href: "#menu"},
href: "#menu",
},
{ {
text: "Order Delivery", text: "Order Delivery", href: "https://mamamiaspizza76.com"},
href: "https://mamamiaspizza76.com",
},
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/fresh-homemade-mini-pizzas_114579-64575.jpg" imageSrc="http://img.b2bpic.net/free-photo/fresh-homemade-mini-pizzas_114579-64575.jpg"
imageAlt="Fresh Mama Mias pizza" imageAlt="Fresh Mama Mias pizza"
mediaAnimation="slide-up" mediaAnimation="slide-up"
avatars={[ avatars={[
{ {
src: "http://img.b2bpic.net/free-photo/high-angle-friends-having-lunch-restaurant_23-2150491780.jpg", src: "http://img.b2bpic.net/free-photo/high-angle-friends-having-lunch-restaurant_23-2150491780.jpg", alt: "Customer 1"},
alt: "Customer 1",
},
{ {
src: "http://img.b2bpic.net/free-photo/older-friends-eating-restaurant_23-2149316782.jpg", src: "http://img.b2bpic.net/free-photo/older-friends-eating-restaurant_23-2149316782.jpg", alt: "Customer 2"},
alt: "Customer 2",
},
{ {
src: "http://img.b2bpic.net/free-photo/portrait-business-woman-suit-sitting-her-office-answering-phone-call-with-pleased_1258-194677.jpg", src: "http://img.b2bpic.net/free-photo/portrait-business-woman-suit-sitting-her-office-answering-phone-call-with-pleased_1258-194677.jpg", alt: "Customer 3"},
alt: "Customer 3",
},
{ {
src: "http://img.b2bpic.net/free-photo/vertical-shot-friendly-asian-girl-smiling-serving-coffee-barista-giving-you-cup-coffee_1258-199251.jpg", src: "http://img.b2bpic.net/free-photo/vertical-shot-friendly-asian-girl-smiling-serving-coffee-barista-giving-you-cup-coffee_1258-199251.jpg", alt: "Customer 4"},
alt: "Customer 4",
},
{ {
src: "http://img.b2bpic.net/free-photo/family-reunion-celebrating-winter_23-2149628493.jpg", src: "http://img.b2bpic.net/free-photo/family-reunion-celebrating-winter_23-2149628493.jpg", alt: "Customer 5"},
alt: "Customer 5",
},
]} ]}
avatarText="Join 500+ happy regulars" avatarText="Join 500+ happy regulars"
marqueeItems={[ marqueeItems={[
{ {
type: "text", type: "text", text: "Fresh Mozzarella Daily"},
text: "Fresh Mozzarella Daily",
},
{ {
type: "text", type: "text", text: "Family Owned Since 1998"},
text: "Family Owned Since 1998",
},
{ {
type: "text", type: "text", text: "Authentic Philly Cheesesteaks"},
text: "Authentic Philly Cheesesteaks",
},
{ {
type: "text", type: "text", text: "Crispy Buffalo Wings"},
text: "Crispy Buffalo Wings",
},
{ {
type: "text", type: "text", text: "Delivered Hot to Your Door"},
text: "Delivered Hot to Your Door",
},
]} ]}
/> />
</div> </div>
@@ -154,34 +115,16 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
features={[ features={[
{ {
id: "m1", id: "m1", label: "Pizza", title: "Large Plain & Special Pizzas", items: [
label: "Pizza", "Large Plain Cheese", "Meat Lover's Pizza", "Stuffed Crust Special"],
title: "Large Plain & Special Pizzas",
items: [
"Large Plain Cheese",
"Meat Lover's Pizza",
"Stuffed Crust Special",
],
}, },
{ {
id: "m2", id: "m2", label: "Wings", title: "Signature Wings & Platters", items: [
label: "Wings", "Crispy Buffalo Wings", "BBQ Chicken Platters", "Fresh Baked Sides"],
title: "Signature Wings & Platters",
items: [
"Crispy Buffalo Wings",
"BBQ Chicken Platters",
"Fresh Baked Sides",
],
}, },
{ {
id: "m3", id: "m3", label: "Comfort", title: "Philly Favorites", items: [
label: "Comfort", "Authentic Cheesesteaks", "Chicken Burger & Fries", "Specialty Omelettes"],
title: "Philly Favorites",
items: [
"Authentic Cheesesteaks",
"Chicken Burger & Fries",
"Specialty Omelettes",
],
}, },
]} ]}
title="Menu Highlights" title="Menu Highlights"
@@ -194,30 +137,15 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
testimonials={[ testimonials={[
{ {
id: "1", id: "1", name: "Sarah Johnson", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-friends-having-lunch-restaurant_23-2150491780.jpg"},
name: "Sarah Johnson",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-friends-having-lunch-restaurant_23-2150491780.jpg",
},
{ {
id: "2", id: "2", name: "Michael Chen", imageSrc: "http://img.b2bpic.net/free-photo/older-friends-eating-restaurant_23-2149316782.jpg"},
name: "Michael Chen",
imageSrc: "http://img.b2bpic.net/free-photo/older-friends-eating-restaurant_23-2149316782.jpg",
},
{ {
id: "3", id: "3", name: "Emily Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-suit-sitting-her-office-answering-phone-call-with-pleased_1258-194677.jpg"},
name: "Emily Rodriguez",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-suit-sitting-her-office-answering-phone-call-with-pleased_1258-194677.jpg",
},
{ {
id: "4", id: "4", name: "David Kim", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-friendly-asian-girl-smiling-serving-coffee-barista-giving-you-cup-coffee_1258-199251.jpg"},
name: "David Kim",
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-friendly-asian-girl-smiling-serving-coffee-barista-giving-you-cup-coffee_1258-199251.jpg",
},
{ {
id: "5", id: "5", name: "Alex Smith", imageSrc: "http://img.b2bpic.net/free-photo/family-reunion-celebrating-winter_23-2149628493.jpg"},
name: "Alex Smith",
imageSrc: "http://img.b2bpic.net/free-photo/family-reunion-celebrating-winter_23-2149628493.jpg",
},
]} ]}
cardTitle="What Our Neighbors Say" cardTitle="What Our Neighbors Say"
cardTag="Community Love" cardTag="Community Love"
@@ -229,8 +157,7 @@ export default function LandingPage() {
<ContactSplit <ContactSplit
useInvertedBackground={true} useInvertedBackground={true}
background={{ background={{
variant: "plain", variant: "plain"}}
}}
tag="Visit Us" tag="Visit Us"
title="Order Pickup or Delivery" title="Order Pickup or Delivery"
description="6832 Bustleton Ave, Philadelphia, PA 19149. Give us a call or visit our website to place your order today." description="6832 Bustleton Ave, Philadelphia, PA 19149. Give us a call or visit our website to place your order today."
@@ -246,35 +173,29 @@ export default function LandingPage() {
<FooterSimple <FooterSimple
columns={[ columns={[
{ {
title: "Location", title: "Location", items: [
items: [
{ {
label: "6832 Bustleton Ave, Philadelphia", label: "6832 Bustleton Ave, Philadelphia", href: "#"},
href: "#",
},
{ {
label: "(215) 338-8440", label: "(215) 338-8440", href: "tel:2153388440"},
href: "tel:2153388440",
},
], ],
}, },
{ {
title: "Order", title: "Order", items: [
items: [
{ {
label: "Menu", label: "Menu", href: "#menu"},
href: "#menu",
},
{ {
label: "Pickup", label: "Pickup", href: "#contact"},
href: "#contact",
},
{ {
label: "Delivery", label: "Delivery", href: "https://mamamiaspizza76.com"},
href: "https://mamamiaspizza76.com",
},
], ],
}, },
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }
]
}
]} ]}
bottomLeftText="© 2024 Mama Mias Pizza & Wings" bottomLeftText="© 2024 Mama Mias Pizza & Wings"
bottomRightText="Open Daily until 11 PM" bottomRightText="Open Daily until 11 PM"
@@ -283,4 +204,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }