Merge version_1 into main #3

Merged
bender merged 1 commits from version_1 into main 2026-03-15 11:34:36 +00:00

View File

@@ -30,10 +30,10 @@ export default function PizzaLandingPage() {
<NavbarStyleCentered
brandName="Pizza Haven"
navItems={[
{ name: "Menu", id: "menu" },
{ name: "Menu", id: "products" },
{ name: "About", id: "about" },
{ name: "Specials", id: "specials" },
{ name: "Reviews", id: "reviews" }
{ name: "Specials", id: "features" },
{ name: "Reviews", id: "testimonials" }
]}
button={{
text: "Order Now", href: "#contact"
@@ -47,17 +47,17 @@ export default function PizzaLandingPage() {
description="Handcrafted pizzas made with fresh, organic ingredients. Experience authentic Italian flavors in every bite."
buttons={[
{ text: "Order Now", href: "#contact" },
{ text: "View Menu", href: "#menu" }
{ text: "View Menu", href: "#products" }
]}
slides={[
{
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pineapple-pizza-stand-with-knives-rolling-pin-flour-black-table_141793-13170.jpg?_wi=1", imageAlt: "Fresh delicious pizza"
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pineapple-pizza-stand-with-knives-rolling-pin-flour-black-table_141793-13170.jpg", imageAlt: "Fresh delicious pizza"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-pizza-with-pepperoni_23-2149235630.jpg?_wi=1", imageAlt: "Classic pepperoni pizza"
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-pizza-with-pepperoni_23-2149235630.jpg", imageAlt: "Classic pepperoni pizza"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/side-view-bowl-vegetable-salad-with-vegetables-dark-grey-background_140725-134278.jpg?_wi=1", imageAlt: "Fresh vegetarian pizza"
imageSrc: "http://img.b2bpic.net/free-photo/side-view-bowl-vegetable-salad-with-vegetables-dark-grey-background_140725-134278.jpg", imageAlt: "Fresh vegetarian pizza"
}
]}
autoplayDelay={4000}
@@ -76,11 +76,11 @@ export default function PizzaLandingPage() {
products={[
{
id: "1", brand: "Signature", name: "Classic Margherita", price: "$14.99", rating: 5,
reviewCount: "328 reviews", imageSrc: "http://img.b2bpic.net/free-photo/side-view-bowl-vegetable-salad-with-vegetables-dark-grey-background_140725-134278.jpg?_wi=2", imageAlt: "Classic Margherita pizza"
reviewCount: "328 reviews", imageSrc: "http://img.b2bpic.net/free-photo/side-view-bowl-vegetable-salad-with-vegetables-dark-grey-background_140725-134278.jpg", imageAlt: "Classic Margherita pizza"
},
{
id: "2", brand: "Signature", name: "Pepperoni Supreme", price: "$16.99", rating: 5,
reviewCount: "412 reviews", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-pizza-with-pepperoni_23-2149235630.jpg?_wi=2", imageAlt: "Pepperoni Supreme pizza"
reviewCount: "412 reviews", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-pizza-with-pepperoni_23-2149235630.jpg", imageAlt: "Pepperoni Supreme pizza"
},
{
id: "3", brand: "Specialty", name: "Hawaiian Blend", price: "$15.99", rating: 5,
@@ -123,15 +123,15 @@ export default function PizzaLandingPage() {
features={[
{
id: "1", title: "Fresh Ingredients", tags: ["Organic", "Local", "Daily"],
imageSrc: "http://img.b2bpic.net/free-photo/side-view-bowl-vegetable-salad-with-vegetables-dark-grey-background_140725-134278.jpg?_wi=3", imageAlt: "Fresh pizza ingredients"
imageSrc: "http://img.b2bpic.net/free-photo/side-view-bowl-vegetable-salad-with-vegetables-dark-grey-background_140725-134278.jpg", imageAlt: "Fresh pizza ingredients"
},
{
id: "2", title: "Wood-Fired Oven", tags: ["Authentic", "Traditional", "Crafted"],
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pineapple-pizza-stand-with-knives-rolling-pin-flour-black-table_141793-13170.jpg?_wi=2", imageAlt: "Wood-fired oven"
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pineapple-pizza-stand-with-knives-rolling-pin-flour-black-table_141793-13170.jpg", imageAlt: "Wood-fired oven"
},
{
id: "3", title: "Expert Pizzaiolos", tags: ["Trained", "Passionate", "Dedicated"],
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-pizza-with-pepperoni_23-2149235630.jpg?_wi=3", imageAlt: "Expert pizza making"
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-pizza-with-pepperoni_23-2149235630.jpg", imageAlt: "Expert pizza making"
}
]}
animationType="slide-up"