Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a7281d1571 |
334
src/app/page.tsx
334
src/app/page.tsx
@@ -3,7 +3,7 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
@@ -34,37 +34,23 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
name: "Home", id: "#hero"},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "#about",
|
||||
},
|
||||
name: "About Us", id: "#about"},
|
||||
{
|
||||
name: "Our Menu",
|
||||
id: "#menu",
|
||||
},
|
||||
name: "Our Menu", id: "#menu"},
|
||||
{
|
||||
name: "Specials",
|
||||
id: "#specials",
|
||||
},
|
||||
name: "Specials", id: "#specials"},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "#testimonials",
|
||||
},
|
||||
name: "Testimonials", id: "#testimonials"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/hand-drawn-pizzeria-vintage-logo_23-2150174663.jpg"
|
||||
logoAlt="Pizza di Napoli Logo"
|
||||
brandName="Pizza di Napoli"
|
||||
button={{
|
||||
text: "Order Now",
|
||||
href: "#menu",
|
||||
}}
|
||||
text: "Order Now", href: "#menu"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -76,13 +62,9 @@ export default function LandingPage() {
|
||||
tagIcon={Star}
|
||||
buttons={[
|
||||
{
|
||||
text: "View Our Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
text: "View Our Menu", href: "#menu"},
|
||||
{
|
||||
text: "Make a Reservation",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Make a Reservation", href: "#contact"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-pizza-dough-with-mushrooms-tomatoes-word-written-flour_23-2148753792.jpg"
|
||||
imageAlt="delicious italian pizza restaurant table"
|
||||
@@ -90,25 +72,15 @@ export default function LandingPage() {
|
||||
textPosition="bottom"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-woman-table-with-smartphone_23-2147680771.jpg",
|
||||
alt: "Smiling woman at table with smartphone",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-woman-table-with-smartphone_23-2147680771.jpg", alt: "Smiling woman at table with smartphone"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/modern-young-woman-sitting-near-window-talking-mobile-phone-restaurant_23-2147974700.jpg",
|
||||
alt: "Modern young woman sitting near the window talking on mobile phone in the restaurant",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/modern-young-woman-sitting-near-window-talking-mobile-phone-restaurant_23-2147974700.jpg", alt: "Modern young woman sitting near the window talking on mobile phone in the restaurant"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-holding-cocktail-with-her-friend_23-2147859558.jpg",
|
||||
alt: "Young woman holding cocktail with her friend",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-holding-cocktail-with-her-friend_23-2147859558.jpg", alt: "Young woman holding cocktail with her friend"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-beautiful-young-woman-with-cocktail-smartphone-digital-tablet-restaurant_23-2147936287.jpg",
|
||||
alt: "Smiling beautiful young woman with cocktail; smartphone and digital tablet in the restaurant",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-beautiful-young-woman-with-cocktail-smartphone-digital-tablet-restaurant_23-2147936287.jpg", alt: "Smiling beautiful young woman with cocktail; smartphone and digital tablet in the restaurant"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-man-luxury-restaurant_23-2150598415.jpg",
|
||||
alt: "Medium shot man in luxury restaurant",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-man-luxury-restaurant_23-2150598415.jpg", alt: "Medium shot man in luxury restaurant"},
|
||||
]}
|
||||
avatarText="Join our 100K+ happy customers!"
|
||||
/>
|
||||
@@ -121,19 +93,13 @@ export default function LandingPage() {
|
||||
metrics={[
|
||||
{
|
||||
icon: Flame,
|
||||
label: "Years of Tradition",
|
||||
value: "25+",
|
||||
},
|
||||
label: "Years of Tradition", value: "25+"},
|
||||
{
|
||||
icon: Heart,
|
||||
label: "Happy Guests Served",
|
||||
value: "100K+",
|
||||
},
|
||||
label: "Happy Guests Served", value: "100K+"},
|
||||
{
|
||||
icon: Award,
|
||||
label: "Awards & Recognition",
|
||||
value: "15+",
|
||||
},
|
||||
label: "Awards & Recognition", value: "15+"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -146,23 +112,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Fresh, Local Ingredients",
|
||||
description: "We source the finest, freshest ingredients from local farms and Italian purveyors to ensure unparalleled taste.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cutter-near-raw-pizza_23-2147772088.jpg",
|
||||
imageAlt: "fresh italian pizza ingredients basil tomato",
|
||||
},
|
||||
title: "Fresh, Local Ingredients", description: "We source the finest, freshest ingredients from local farms and Italian purveyors to ensure unparalleled taste.", imageSrc: "http://img.b2bpic.net/free-photo/cutter-near-raw-pizza_23-2147772088.jpg", imageAlt: "fresh italian pizza ingredients basil tomato"},
|
||||
{
|
||||
title: "Authentic Wood-Fired Oven",
|
||||
description: "Our pizzas are baked in a traditional wood-fired oven, achieving that perfect crispy crust and smoky flavor.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-chef-baking-delicious-pizza_23-2150134283.jpg",
|
||||
imageAlt: "traditional wood fired pizza oven flames",
|
||||
},
|
||||
title: "Authentic Wood-Fired Oven", description: "Our pizzas are baked in a traditional wood-fired oven, achieving that perfect crispy crust and smoky flavor.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-chef-baking-delicious-pizza_23-2150134283.jpg", imageAlt: "traditional wood fired pizza oven flames"},
|
||||
{
|
||||
title: "Artisanal Preparation",
|
||||
description: "Each pizza is hand-stretched and topped with care by our skilled pizzaiolos, following generations-old recipes.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-making-pizza-kitchen_1150-17792.jpg",
|
||||
imageAlt: "italian pizza chef preparing dough",
|
||||
},
|
||||
title: "Artisanal Preparation", description: "Each pizza is hand-stretched and topped with care by our skilled pizzaiolos, following generations-old recipes.", imageSrc: "http://img.b2bpic.net/free-photo/chef-making-pizza-kitchen_1150-17792.jpg", imageAlt: "italian pizza chef preparing dough"},
|
||||
]}
|
||||
title="Crafting Culinary Perfection"
|
||||
description="At Pizza di Napoli, every dish is a celebration of authentic Italian flavors and time-honored techniques."
|
||||
@@ -178,47 +132,17 @@ export default function LandingPage() {
|
||||
carouselMode="buttons"
|
||||
products={[
|
||||
{
|
||||
id: "margherita",
|
||||
name: "Pizza Margherita",
|
||||
price: "€12.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-with-tomatoes-cutter_23-2148753761.jpg",
|
||||
imageAlt: "classic margherita pizza fresh basil",
|
||||
},
|
||||
id: "margherita", name: "Pizza Margherita", price: "€12.50", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-with-tomatoes-cutter_23-2148753761.jpg", imageAlt: "classic margherita pizza fresh basil"},
|
||||
{
|
||||
id: "pepperoni",
|
||||
name: "Pizza Pepperoni",
|
||||
price: "€14.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pizza-with-pepperoni-red-chili-sauce_114579-4477.jpg",
|
||||
imageAlt: "spicy pepperoni pizza with crispy crust",
|
||||
},
|
||||
id: "pepperoni", name: "Pizza Pepperoni", price: "€14.00", imageSrc: "http://img.b2bpic.net/free-photo/pizza-with-pepperoni-red-chili-sauce_114579-4477.jpg", imageAlt: "spicy pepperoni pizza with crispy crust"},
|
||||
{
|
||||
id: "vegetariana",
|
||||
name: "Pizza Vegetariana",
|
||||
price: "€13.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pizza-with-peppers-olives-cheese_501050-810.jpg",
|
||||
imageAlt: "fresh vegetarian pizza colorful vegetables",
|
||||
},
|
||||
id: "vegetariana", name: "Pizza Vegetariana", price: "€13.50", imageSrc: "http://img.b2bpic.net/free-photo/pizza-with-peppers-olives-cheese_501050-810.jpg", imageAlt: "fresh vegetarian pizza colorful vegetables"},
|
||||
{
|
||||
id: "calzone",
|
||||
name: "Calzone Classico",
|
||||
price: "€15.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/italian-bread-calzone-restaurant_501050-877.jpg",
|
||||
imageAlt: "golden baked calzone with ricotta cheese",
|
||||
},
|
||||
id: "calzone", name: "Calzone Classico", price: "€15.00", imageSrc: "http://img.b2bpic.net/free-photo/italian-bread-calzone-restaurant_501050-877.jpg", imageAlt: "golden baked calzone with ricotta cheese"},
|
||||
{
|
||||
id: "carbonara",
|
||||
name: "Spaghetti Carbonara",
|
||||
price: "€16.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-bolognese-table_140725-7446.jpg",
|
||||
imageAlt: "creamy carbonara pasta with bacon",
|
||||
},
|
||||
id: "carbonara", name: "Spaghetti Carbonara", price: "€16.00", imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-bolognese-table_140725-7446.jpg", imageAlt: "creamy carbonara pasta with bacon"},
|
||||
{
|
||||
id: "tiramisu",
|
||||
name: "Tiramisu della Casa",
|
||||
price: "€7.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cake-with-whipped-cream-lemon_23-2148395221.jpg",
|
||||
imageAlt: "classic tiramisu dessert cocoa powder",
|
||||
},
|
||||
id: "tiramisu", name: "Tiramisu della Casa", price: "€7.50", imageSrc: "http://img.b2bpic.net/free-photo/cake-with-whipped-cream-lemon_23-2148395221.jpg", imageAlt: "classic tiramisu dessert cocoa powder"},
|
||||
]}
|
||||
title="Our Exquisite Menu"
|
||||
description="From classic Neapolitan pizzas to delectable pastas and desserts, explore a culinary journey through Italy."
|
||||
@@ -232,41 +156,22 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "lunch",
|
||||
badge: "Lunch Deal",
|
||||
badgeIcon: Sun,
|
||||
price: "€18.00",
|
||||
subtitle: "Pizza + Drink",
|
||||
buttons: [
|
||||
id: "lunch", badge: "Lunch Deal", badgeIcon: Sun,
|
||||
price: "€18.00", subtitle: "Pizza + Drink", buttons: [
|
||||
{
|
||||
text: "See Details",
|
||||
href: "#",
|
||||
},
|
||||
text: "See Details", href: "#"},
|
||||
],
|
||||
features: [
|
||||
"Any Classic Pizza",
|
||||
"Soft Drink or Water",
|
||||
"Available Mon-Fri 12-3 PM",
|
||||
],
|
||||
"Any Classic Pizza", "Soft Drink or Water", "Available Mon-Fri 12-3 PM"],
|
||||
},
|
||||
{
|
||||
id: "tasting",
|
||||
badge: "Chef's Tasting",
|
||||
badgeIcon: Sparkles,
|
||||
price: "€35.00",
|
||||
subtitle: "Per Person",
|
||||
buttons: [
|
||||
id: "tasting", badge: "Chef's Tasting", badgeIcon: Sparkles,
|
||||
price: "€35.00", subtitle: "Per Person", buttons: [
|
||||
{
|
||||
text: "Book Now",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Book Now", href: "#contact"},
|
||||
],
|
||||
features: [
|
||||
"Appetizer Tasting Platter",
|
||||
"Choice of 2 Mini Pizzas",
|
||||
"Dessert of the Day",
|
||||
"Includes a Glass of Wine",
|
||||
],
|
||||
"Appetizer Tasting Platter", "Choice of 2 Mini Pizzas", "Dessert of the Day", "Includes a Glass of Wine"],
|
||||
},
|
||||
]}
|
||||
title="Daily Specials & Tasting Menus"
|
||||
@@ -281,45 +186,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Maria G.",
|
||||
handle: "@foodloverbrux",
|
||||
testimonial: "Absolutely the best pizza in Brussels! The crust is perfect, ingredients are fresh, and the service is always wonderful. A true taste of Italy!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-happy-woman-clanging-glasses-wine-table-cafe_23-2148016787.jpg",
|
||||
imageAlt: "happy young woman smiling restaurant",
|
||||
},
|
||||
id: "1", name: "Maria G.", handle: "@foodloverbrux", testimonial: "Absolutely the best pizza in Brussels! The crust is perfect, ingredients are fresh, and the service is always wonderful. A true taste of Italy!", imageSrc: "http://img.b2bpic.net/free-photo/person-happy-woman-clanging-glasses-wine-table-cafe_23-2148016787.jpg", imageAlt: "happy young woman smiling restaurant"},
|
||||
{
|
||||
id: "2",
|
||||
name: "David L.",
|
||||
handle: "@gourmetexplorer",
|
||||
testimonial: "As an Italian, I can confidently say this is authentic Neapolitan pizza. The Carbonara is also to die for! Highly recommend.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-happy-young-bearded-man-trendy-hat-texting-messages-via-social-networks-browsing-internet-using-free-wifi-his-electronic-device-coffee-break-restaurant_273609-1934.jpg",
|
||||
imageAlt: "man smiling in restaurant setting",
|
||||
},
|
||||
id: "2", name: "David L.", handle: "@gourmetexplorer", testimonial: "As an Italian, I can confidently say this is authentic Neapolitan pizza. The Carbonara is also to die for! Highly recommend.", imageSrc: "http://img.b2bpic.net/free-photo/attractive-happy-young-bearded-man-trendy-hat-texting-messages-via-social-networks-browsing-internet-using-free-wifi-his-electronic-device-coffee-break-restaurant_273609-1934.jpg", imageAlt: "man smiling in restaurant setting"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Sophie P.",
|
||||
handle: "@brusselseats",
|
||||
testimonial: "Pizza di Napoli is our go-to spot for family dinners. The atmosphere is lovely, and the kids adore the Margherita. Always a delightful evening.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/supportive-cute-blond-girlfriend-cheering-liking-interesting-concept-cool-idea-thumbsup-smiling_1258-229510.jpg",
|
||||
imageAlt: "woman with satisfied expression cafe",
|
||||
},
|
||||
id: "3", name: "Sophie P.", handle: "@brusselseats", testimonial: "Pizza di Napoli is our go-to spot for family dinners. The atmosphere is lovely, and the kids adore the Margherita. Always a delightful evening.", imageSrc: "http://img.b2bpic.net/free-photo/supportive-cute-blond-girlfriend-cheering-liking-interesting-concept-cool-idea-thumbsup-smiling_1258-229510.jpg", imageAlt: "woman with satisfied expression cafe"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Thomas M.",
|
||||
handle: "@travelingfoodie",
|
||||
testimonial: "Found this gem while visiting Brussels. The wood-fired oven truly makes a difference. Every bite felt like a trip to Naples!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-wearing-blue-outfit-doing-double-ok-gesture-with_1298-451.jpg",
|
||||
imageAlt: "smiling man casual dining restaurant",
|
||||
},
|
||||
id: "4", name: "Thomas M.", handle: "@travelingfoodie", testimonial: "Found this gem while visiting Brussels. The wood-fired oven truly makes a difference. Every bite felt like a trip to Naples!", imageSrc: "http://img.b2bpic.net/free-photo/young-man-wearing-blue-outfit-doing-double-ok-gesture-with_1298-451.jpg", imageAlt: "smiling man casual dining restaurant"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Elena R.",
|
||||
handle: "@culinarycritique",
|
||||
testimonial: "Impeccable service and exquisite food. The specials are always creative and delicious. A must-visit for any Italian food enthusiast.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-friends-eating-delicious-pizza_23-2150317018.jpg",
|
||||
imageAlt: "couple enjoying dinner at restaurant",
|
||||
},
|
||||
id: "5", name: "Elena R.", handle: "@culinarycritique", testimonial: "Impeccable service and exquisite food. The specials are always creative and delicious. A must-visit for any Italian food enthusiast.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-friends-eating-delicious-pizza_23-2150317018.jpg", imageAlt: "couple enjoying dinner at restaurant"},
|
||||
]}
|
||||
title="What Our Guests Say"
|
||||
description="Hear from our cherished customers about their unforgettable dining experiences at Pizza di Napoli."
|
||||
@@ -333,14 +208,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Brussels Food Guide",
|
||||
"The Pizza Review",
|
||||
"Gourmet Magazine EU",
|
||||
"Taste of Belgium",
|
||||
"Restaurant Critics Journal",
|
||||
"Local Eats Brussels",
|
||||
"Flavor & Forte",
|
||||
]}
|
||||
"Brussels Food Guide", "The Pizza Review", "Gourmet Magazine EU", "Taste of Belgium", "Restaurant Critics Journal", "Local Eats Brussels", "Flavor & Forte"]}
|
||||
title="Featured In"
|
||||
description="Proudly recognized by leading food critics and local publications for our commitment to quality."
|
||||
speed={40}
|
||||
@@ -354,35 +222,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq-1",
|
||||
title: "Do you take reservations?",
|
||||
content: "Yes, we highly recommend making a reservation, especially for dinner and weekend visits, to ensure you get a table. You can book directly via our contact section or call us.",
|
||||
},
|
||||
id: "faq-1", title: "Do you take reservations?", content: "Yes, we highly recommend making a reservation, especially for dinner and weekend visits, to ensure you get a table. You can book directly via our contact section or call us."},
|
||||
{
|
||||
id: "faq-2",
|
||||
title: "Do you offer vegetarian or vegan options?",
|
||||
content: "Absolutely! Our menu includes a variety of delicious vegetarian pizzas and pasta dishes. We also have vegan cheese options available upon request for most pizzas.",
|
||||
},
|
||||
id: "faq-2", title: "Do you offer vegetarian or vegan options?", content: "Absolutely! Our menu includes a variety of delicious vegetarian pizzas and pasta dishes. We also have vegan cheese options available upon request for most pizzas."},
|
||||
{
|
||||
id: "faq-3",
|
||||
title: "Can I order online for pickup or delivery?",
|
||||
content: "Yes, online ordering for both pickup and delivery is available through our website. Simply visit the 'Our Menu' section and select your desired items.",
|
||||
},
|
||||
id: "faq-3", title: "Can I order online for pickup or delivery?", content: "Yes, online ordering for both pickup and delivery is available through our website. Simply visit the 'Our Menu' section and select your desired items."},
|
||||
{
|
||||
id: "faq-4",
|
||||
title: "Do you cater for events?",
|
||||
content: "Yes, we offer catering services for private events and gatherings. Please contact us directly to discuss your needs and custom menu options.",
|
||||
},
|
||||
id: "faq-4", title: "Do you cater for events?", content: "Yes, we offer catering services for private events and gatherings. Please contact us directly to discuss your needs and custom menu options."},
|
||||
{
|
||||
id: "faq-5",
|
||||
title: "Are there gluten-free options?",
|
||||
content: "We do offer a gluten-free crust option for our pizzas. Please inform your server about any dietary restrictions when ordering.",
|
||||
},
|
||||
id: "faq-5", title: "Are there gluten-free options?", content: "We do offer a gluten-free crust option for our pizzas. Please inform your server about any dietary restrictions when ordering."},
|
||||
{
|
||||
id: "faq-6",
|
||||
title: "What are your opening hours?",
|
||||
content: "Our current opening hours are: Monday-Friday: 12 PM - 3 PM (Lunch) & 6 PM - 10 PM (Dinner); Saturday-Sunday: 12 PM - 11 PM (All Day). Hours may vary on public holidays.",
|
||||
},
|
||||
id: "faq-6", title: "What are your opening hours?", content: "Our current opening hours are: Monday-Friday: 12 PM - 3 PM (Lunch) & 6 PM - 10 PM (Dinner); Saturday-Sunday: 12 PM - 11 PM (All Day). Hours may vary on public holidays."},
|
||||
]}
|
||||
title="Your Questions, Answered"
|
||||
description="Find quick answers to common questions about our restaurant, menu, and services."
|
||||
@@ -391,22 +241,25 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
<ContactSplit
|
||||
tag="Get in Touch"
|
||||
title="Visit Us or Make a Reservation"
|
||||
description={`Whether you're planning a special dinner or just stopping by, we're here to welcome you. Our team is ready to assist with reservations, answer your questions, and ensure your visit is delightful.
|
||||
|
||||
Location: Rue de la Loi 100, 1000 Brussels, Belgium
|
||||
Phone: +32 2 123 45 67
|
||||
Email: info@pizzadinapoli.com
|
||||
|
||||
Operating Hours:
|
||||
Monday - Friday: 12 PM - 3 PM (Lunch) & 6 PM - 10 PM (Dinner)
|
||||
Saturday - Sunday: 12 PM - 11 PM (All Day)
|
||||
|
||||
We look forward to serving you the best authentic Italian pizza! For reservations, please call us or use our online reservation system (link to be added).`}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
text="Visit Us or Make a Reservation Today!"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Directions",
|
||||
href: "https://maps.app.goo.gl/ewyXQc69sQr2MyXB8",
|
||||
},
|
||||
{
|
||||
text: "Call Us",
|
||||
href: "tel:+3221234567",
|
||||
},
|
||||
]}
|
||||
mediaPosition="right"
|
||||
imageSrc="https://maps.googleapis.com/maps/api/staticmap?center=50.8503,4.3517&zoom=14&size=600x400&markers=color:red%7Clabel:P%7C50.8503,4.3517&key=YOUR_GOOGLE_MAPS_API_KEY_HERE"
|
||||
imageAlt="Location map for Pizza di Napoli in Brussels"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -417,66 +270,39 @@ export default function LandingPage() {
|
||||
logoText="Pizza di Napoli"
|
||||
columns={[
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
title: "Menu", items: [
|
||||
{
|
||||
label: "Pizzas",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Pizzas", href: "#menu"},
|
||||
{
|
||||
label: "Pastas",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Pastas", href: "#menu"},
|
||||
{
|
||||
label: "Desserts",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Desserts", href: "#menu"},
|
||||
{
|
||||
label: "Drinks",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Drinks", href: "#menu"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
label: "About Us", href: "#about"},
|
||||
{
|
||||
label: "Specials",
|
||||
href: "#specials",
|
||||
},
|
||||
label: "Specials", href: "#specials"},
|
||||
{
|
||||
label: "Testimonials",
|
||||
href: "#testimonials",
|
||||
},
|
||||
label: "Testimonials", href: "#testimonials"},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "#faq",
|
||||
},
|
||||
label: "FAQ", href: "#faq"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "Reservations",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Reservations", href: "#contact"},
|
||||
{
|
||||
label: "Directions",
|
||||
href: "https://maps.app.goo.gl/ewyXQc69sQr2MyXB8",
|
||||
},
|
||||
label: "Directions", href: "https://maps.app.goo.gl/ewyXQc69sQr2MyXB8"},
|
||||
{
|
||||
label: "Call Us",
|
||||
href: "tel:+3221234567",
|
||||
},
|
||||
label: "Call Us", href: "tel:+3221234567"},
|
||||
{
|
||||
label: "Email",
|
||||
href: "mailto:info@pizzadinapoli.com",
|
||||
},
|
||||
label: "Email", href: "mailto:info@pizzadinapoli.com"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user