4 Commits

Author SHA1 Message Date
b7c074f378 Update src/app/page.tsx 2026-04-26 19:44:14 +00:00
c7e55bf5e6 Merge version_2 into main
Merge version_2 into main
2026-04-26 19:43:34 +00:00
977f3ca777 Update src/app/page.tsx 2026-04-26 19:43:31 +00:00
5fb50f53f6 Merge version_1 into main
Merge version_1 into main
2026-04-26 19:42:40 +00:00

View File

@@ -102,7 +102,7 @@ export default function LandingPage() {
products={[
{ id: "p1", name: "Margherita", price: "$16", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/still-life-fast-food-dishes_23-2149187950.jpg" },
{ id: "p2", name: "Prosciutto e Arugula", price: "$22", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-with-parmesan-cheese_23-2148753752.jpg" },
{ id: "p3", name: "Quattro Formaggi", price: "$19", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-delicious-pizza-with-parmesan-cheese_23-2148753753.jpg" },
{ id: "p3", name: "Quattro Formaggi", price: "$19", variant: "Classic", imageSrc: "http://img.b2bpic.net/flat-lay-delicious-pizza-with-parmesan-cheese_23-2148753753.jpg" },
{ id: "p4", name: "Diavola", price: "$18", variant: "Spicy", imageSrc: "http://img.b2bpic.net/free-photo/pizza-with-shrimp-salmon-olives_2829-14012.jpg" },
{ id: "p5", name: "Truffle Mushroom", price: "$24", variant: "Signature", imageSrc: "http://img.b2bpic.net/free-photo/man-eating-slice-sausage-pizza-restaurant_140725-5031.jpg" },
{ id: "p6", name: "Calzone Rustico", price: "$20", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/experienced-chef-is-putting-his-pizza-oven-using-special-giant-spatula_613910-3392.jpg" },
@@ -137,6 +137,7 @@ export default function LandingPage() {
{ id: "2", title: "Are there gluten-free options?", content: "We offer a delicious cauliflower-based crust option upon request." },
{ id: "3", title: "Do you take reservations?", content: "Yes, we recommend booking a table in advance, especially during weekends." },
]}
buttons={[{ text: "Book a Table", href: "#contact" }]}
title="Frequently Asked Questions"
description="Have questions about our menu or restaurant?"
faqsAnimation="slide-up"
@@ -149,7 +150,7 @@ export default function LandingPage() {
background={{ variant: "plain" }}
tag="Get in touch"
title="Visit Us Today"
description="We are located in the heart of the city. Come enjoy an authentic experience with us."
description="We are located in the heart of the city at 123 Pizza Lane. Open daily from 11:00 AM to 10:00 PM. Come enjoy an authentic experience with us."
buttons={[
{ text: "Call to Reserve", href: "tel:+1234567890" },
{ text: "Get Directions", href: "#" },
@@ -176,4 +177,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}