Merge version_1 into main #2
@@ -7,33 +7,28 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import TeamCardOne from '@/components/sections/team/TeamCardOne';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Galleria",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Contatti",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Galleria", id: "/gallery" },
|
||||
{ name: "Contatti", id: "/contact" },
|
||||
]}
|
||||
brandName="Ristorante Bella Napoli"
|
||||
/>
|
||||
@@ -42,9 +37,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Prenotazioni"
|
||||
title="Contattaci"
|
||||
description="Ti aspettiamo per un'esperienza indimenticabile!"
|
||||
@@ -60,62 +53,20 @@ export default function LandingPage() {
|
||||
title="Il nostro staff"
|
||||
description="Conosci le persone dietro Bella Napoli."
|
||||
members={[
|
||||
{
|
||||
id: "m1",
|
||||
name: "Marco Rossi",
|
||||
role: "Head Chef",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
name: "Elena Bianchi",
|
||||
role: "Restaurant Manager",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/human-hand-preparing-fresh-spaghetti-pasta-with-powder-flour-kitchen-counter_23-2148076123.jpg?_wi=4",
|
||||
},
|
||||
{ id: "m1", name: "Marco Rossi", role: "Head Chef", imageSrc: "http://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg" },
|
||||
{ id: "m2", name: "Elena Bianchi", role: "Restaurant Manager", imageSrc: "http://img.b2bpic.net/free-photo/human-hand-preparing-fresh-spaghetti-pasta-with-powder-flour-kitchen-counter_23-2148076123.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/map-mayotte-polygonal-mesh-line-map-flag-map_559531-11248.jpg?_wi=4"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/map-mayotte-polygonal-mesh-line-map-flag-map_559531-11248.jpg"
|
||||
logoText="Bella Napoli"
|
||||
columns={[
|
||||
{
|
||||
title: "Info",
|
||||
items: [
|
||||
{
|
||||
label: "Via Roma 1, Napoli",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "+39 012 345 678",
|
||||
href: "tel:+39012345678",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Orari",
|
||||
items: [
|
||||
{
|
||||
label: "Lun-Dom: 12:00-23:00",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Social",
|
||||
items: [
|
||||
{
|
||||
label: "WhatsApp",
|
||||
href: "https://wa.me/39012345678",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Info", items: [{ label: "Via Roma 1, Napoli", href: "#" }, { label: "+39 012 345 678", href: "tel:+39012345678" }] }, { title: "Orari", items: [{ label: "Lun-Dom: 12:00-23:00", href: "#" }] }, { title: "Social", items: [{ label: "WhatsApp", href: "https://wa.me/39012345678" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -7,33 +7,28 @@ import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function GalleryPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Galleria",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Contatti",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Galleria", id: "/gallery" },
|
||||
{ name: "Contatti", id: "/contact" },
|
||||
]}
|
||||
brandName="Ristorante Bella Napoli"
|
||||
/>
|
||||
@@ -44,32 +39,13 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
animationType="blur-reveal"
|
||||
features={[
|
||||
{
|
||||
title: "Atmosfera",
|
||||
description: "Accogliente e familiare",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
title: "Pasta Fresca",
|
||||
description: "Fatta in casa ogni giorno",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/human-hand-preparing-fresh-spaghetti-pasta-with-powder-flour-kitchen-counter_23-2148076123.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
title: "Dolci",
|
||||
description: "Ispirati alla tradizione",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/homemade-cake-chestnuts-close-up_23-2148395150.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
title: "Vini",
|
||||
description: "Cantina selezionata",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-squeezing-fresh-orange_23-2150645792.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
title: "Pizza",
|
||||
description: "Cotta nel forno a legna",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/margherita-pizza-served-with-basil-leaves_140725-7974.jpg?_wi=2",
|
||||
},
|
||||
{ title: "Atmosfera", description: "Accogliente e familiare", imageSrc: "http://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg" },
|
||||
{ title: "Pasta Fresca", description: "Fatta in casa ogni giorno", imageSrc: "http://img.b2bpic.net/free-photo/human-hand-preparing-fresh-spaghetti-pasta-with-powder-flour-kitchen-counter_23-2148076123.jpg" },
|
||||
{ title: "Dolci", description: "Ispirati alla tradizione", imageSrc: "http://img.b2bpic.net/free-photo/homemade-cake-chestnuts-close-up_23-2148395150.jpg" },
|
||||
{ title: "Vini", description: "Cantina selezionata", imageSrc: "http://img.b2bpic.net/free-photo/hand-squeezing-fresh-orange_23-2150645792.jpg" },
|
||||
{ title: "Pizza", description: "Cotta nel forno a legna", imageSrc: "http://img.b2bpic.net/free-photo/margherita-pizza-served-with-basil-leaves_140725-7974.jpg" },
|
||||
]}
|
||||
title="La nostra galleria"
|
||||
description="Scopri l'ambiente familiare e i nostri piatti deliziosi."
|
||||
@@ -83,60 +59,20 @@ export default function LandingPage() {
|
||||
title="Il nostro processo"
|
||||
description="Dalla terra alla tavola, con amore."
|
||||
features={[
|
||||
{
|
||||
title: "Selezione",
|
||||
description: "Scegliamo solo prodotti locali.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/human-hand-preparing-fresh-spaghetti-pasta-with-powder-flour-kitchen-counter_23-2148076123.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
title: "Preparazione",
|
||||
description: "Tutto fatto a mano.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/homemade-cake-chestnuts-close-up_23-2148395150.jpg?_wi=3",
|
||||
},
|
||||
{ title: "Selezione", description: "Scegliamo solo prodotti locali.", imageSrc: "http://img.b2bpic.net/free-photo/human-hand-preparing-fresh-spaghetti-pasta-with-powder-flour-kitchen-counter_23-2148076123.jpg" },
|
||||
{ title: "Preparazione", description: "Tutto fatto a mano.", imageSrc: "http://img.b2bpic.net/free-photo/homemade-cake-chestnuts-close-up_23-2148395150.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/map-mayotte-polygonal-mesh-line-map-flag-map_559531-11248.jpg?_wi=3"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/map-mayotte-polygonal-mesh-line-map-flag-map_559531-11248.jpg"
|
||||
logoText="Bella Napoli"
|
||||
columns={[
|
||||
{
|
||||
title: "Info",
|
||||
items: [
|
||||
{
|
||||
label: "Via Roma 1, Napoli",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "+39 012 345 678",
|
||||
href: "tel:+39012345678",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Orari",
|
||||
items: [
|
||||
{
|
||||
label: "Lun-Dom: 12:00-23:00",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Social",
|
||||
items: [
|
||||
{
|
||||
label: "WhatsApp",
|
||||
href: "https://wa.me/39012345678",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Info", items: [{ label: "Via Roma 1, Napoli", href: "#" }, { label: "+39 012 345 678", href: "tel:+39012345678" }] }, { title: "Orari", items: [{ label: "Lun-Dom: 12:00-23:00", href: "#" }] }, { title: "Social", items: [{ label: "WhatsApp", href: "https://wa.me/39012345678" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -7,33 +7,28 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function MenuPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Galleria",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Contatti",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Galleria", id: "/gallery" },
|
||||
{ name: "Contatti", id: "/contact" },
|
||||
]}
|
||||
brandName="Ristorante Bella Napoli"
|
||||
/>
|
||||
@@ -45,44 +40,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Bruschetta",
|
||||
price: "6,00€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-meat-slices-cheese-grapes-pomegranate-oval-serving-board-dark-background_140725-110807.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Caprese",
|
||||
price: "8,00€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/caprese-salad-with-mozzarella-cheese_1147-456.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Tagliere Misto",
|
||||
price: "14,00€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-squeezing-fresh-orange_23-2150645792.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Spaghetti Carbonara",
|
||||
price: "12,00€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-spaghetti-with-greens-white-plate_114579-39171.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Lasagne",
|
||||
price: "13,00€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/customs-food-plate-high-angle_23-2149598955.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Tiramisù",
|
||||
price: "6,00€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-delicious-tiramisu-cafe_1303-25267.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
products={[{ id: "p1", name: "Bruschetta", price: "6,00€", imageSrc: "http://img.b2bpic.net/free-photo/top-view-meat-slices-cheese-grapes-pomegranate-oval-serving-board-dark-background_140725-110807.jpg" }, { id: "p2", name: "Caprese", price: "8,00€", imageSrc: "http://img.b2bpic.net/free-photo/caprese-salad-with-mozzarella-cheese_1147-456.jpg" }, { id: "p3", name: "Tagliere Misto", price: "14,00€", imageSrc: "http://img.b2bpic.net/free-photo/hand-squeezing-fresh-orange_23-2150645792.jpg" }, { id: "p4", name: "Spaghetti Carbonara", price: "12,00€", imageSrc: "http://img.b2bpic.net/free-photo/delicious-spaghetti-with-greens-white-plate_114579-39171.jpg" }, { id: "p5", name: "Lasagne", price: "13,00€", imageSrc: "http://img.b2bpic.net/free-photo/customs-food-plate-high-angle_23-2149598955.jpg" }, { id: "p6", name: "Tiramisù", price: "6,00€", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-delicious-tiramisu-cafe_1303-25267.jpg" }]}
|
||||
title="Il Nostro Menu"
|
||||
description="Piatti preparati con amore e ingredienti genuini."
|
||||
/>
|
||||
@@ -96,57 +54,18 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Specialità del giorno"
|
||||
description="Scopri le nostre creazioni stagionali."
|
||||
products={[
|
||||
{
|
||||
id: "x1",
|
||||
name: "Pasta Fresca al Pesto",
|
||||
price: "11,00€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-spaghetti-with-greens-white-plate_114579-39171.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
products={[{ id: "x1", name: "Pasta Fresca al Pesto", price: "11,00€", imageSrc: "http://img.b2bpic.net/free-photo/delicious-spaghetti-with-greens-white-plate_114579-39171.jpg" }, { id: "x2", name: "Pizza Margherita", price: "9,00€", imageSrc: "http://img.b2bpic.net/free-photo/margherita-pizza-served-with-basil-leaves_140725-7974.jpg" }, { id: "x3", name: "Insalata", price: "7,00€", imageSrc: "http://img.b2bpic.net/free-photo/caprese-salad-with-mozzarella-cheese_1147-456.jpg" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/map-mayotte-polygonal-mesh-line-map-flag-map_559531-11248.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/map-mayotte-polygonal-mesh-line-map-flag-map_559531-11248.jpg"
|
||||
logoText="Bella Napoli"
|
||||
columns={[
|
||||
{
|
||||
title: "Info",
|
||||
items: [
|
||||
{
|
||||
label: "Via Roma 1, Napoli",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "+39 012 345 678",
|
||||
href: "tel:+39012345678",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Orari",
|
||||
items: [
|
||||
{
|
||||
label: "Lun-Dom: 12:00-23:00",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Social",
|
||||
items: [
|
||||
{
|
||||
label: "WhatsApp",
|
||||
href: "https://wa.me/39012345678",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Info", items: [{ label: "Via Roma 1, Napoli", href: "#" }, { label: "+39 012 345 678", href: "tel:+39012345678" }] }, { title: "Orari", items: [{ label: "Lun-Dom: 12:00-23:00", href: "#" }] }, { title: "Social", items: [{ label: "WhatsApp", href: "https://wa.me/39012345678" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
212
src/app/page.tsx
212
src/app/page.tsx
@@ -16,27 +16,22 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Galleria",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Contatti",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Galleria", id: "/gallery" },
|
||||
{ name: "Contatti", id: "/contact" },
|
||||
]}
|
||||
brandName="Ristorante Bella Napoli"
|
||||
/>
|
||||
@@ -44,67 +39,14 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
title="Ristorante Bella Napoli"
|
||||
description="Autentica cucina italiana con ingredienti freschi."
|
||||
buttons={[
|
||||
{
|
||||
text: "Chiama ora",
|
||||
href: "tel:+390123456789",
|
||||
},
|
||||
{
|
||||
text: "Prenota ora",
|
||||
href: "/contact",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/margherita-pizza-served-with-basil-leaves_140725-7974.jpg?_wi=1"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/top-view-meat-slices-cheese-grapes-pomegranate-oval-serving-board-dark-background_140725-110807.jpg",
|
||||
alt: "Chef Marco",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/caprese-salad-with-mozzarella-cheese_1147-456.jpg",
|
||||
alt: "Staff Elena",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/hand-squeezing-fresh-orange_23-2150645792.jpg",
|
||||
alt: "Staff Luca",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/delicious-spaghetti-with-greens-white-plate_114579-39171.jpg",
|
||||
alt: "Staff Sofia",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/customs-food-plate-high-angle_23-2149598955.jpg",
|
||||
alt: "Chef Anna",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Chiama ora", href: "tel:+390123456789" }, { text: "Prenota ora", href: "/contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/margherita-pizza-served-with-basil-leaves_140725-7974.jpg"
|
||||
avatars={[{ src: "http://img.b2bpic.net/free-photo/top-view-meat-slices-cheese-grapes-pomegranate-oval-serving-board-dark-background_140725-110807.jpg", alt: "Chef Marco" }, { src: "http://img.b2bpic.net/free-photo/caprese-salad-with-mozzarella-cheese_1147-456.jpg", alt: "Staff Elena" }, { src: "http://img.b2bpic.net/free-photo/hand-squeezing-fresh-orange_23-2150645792.jpg", alt: "Staff Luca" }, { src: "http://img.b2bpic.net/free-photo/delicious-spaghetti-with-greens-white-plate_114579-39171.jpg", alt: "Staff Sofia" }, { src: "http://img.b2bpic.net/free-photo/customs-food-plate-high-angle_23-2149598955.jpg", alt: "Chef Anna" }]}
|
||||
avatarText="Il nostro team esperto"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Pizza Napoletana",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Pasta Fresca",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Ingredienti Bio",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Tradizione Familiare",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Vini Selezionati",
|
||||
},
|
||||
]}
|
||||
marqueeItems={[{ type: "text", text: "Pizza Napoletana" }, { type: "text", text: "Pasta Fresca" }, { type: "text", text: "Ingredienti Bio" }, { type: "text", text: "Tradizione Familiare" }, { type: "text", text: "Vini Selezionati" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -113,7 +55,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
title="La nostra storia"
|
||||
description="Da generazioni portiamo i sapori autentici dell'Italia nel cuore del nostro quartiere, con ricette di famiglia e prodotti locali di alta qualità."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-friends-having-lunch_23-2150598359.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-friends-having-lunch_23-2150598359.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -124,43 +66,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Cosa dicono i nostri ospiti"
|
||||
description="La soddisfazione dei clienti è il nostro orgoglio."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Giulia R.",
|
||||
handle: "@giulia",
|
||||
testimonial: "La miglior pizza di Napoli!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Marco V.",
|
||||
handle: "@marco",
|
||||
testimonial: "Ottima accoglienza e cibo divino.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/human-hand-preparing-fresh-spaghetti-pasta-with-powder-flour-kitchen-counter_23-2148076123.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Elena S.",
|
||||
handle: "@elena",
|
||||
testimonial: "Consigliatissimo per una cena romantica.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/homemade-cake-chestnuts-close-up_23-2148395150.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Luca B.",
|
||||
handle: "@luca",
|
||||
testimonial: "Tiramisù strepitoso.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-delicious-tiramisu-cafe_1303-25267.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Sofia F.",
|
||||
handle: "@sofia",
|
||||
testimonial: "Servizio eccellente e prezzi giusti.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-friends-having-lunch_23-2150598359.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
testimonials={[{ id: "1", name: "Giulia R.", handle: "@giulia", testimonial: "La miglior pizza di Napoli!", imageSrc: "http://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg" }, { id: "2", name: "Marco V.", handle: "@marco", testimonial: "Ottima accoglienza e cibo divino.", imageSrc: "http://img.b2bpic.net/free-photo/human-hand-preparing-fresh-spaghetti-pasta-with-powder-flour-kitchen-counter_23-2148076123.jpg" }, { id: "3", name: "Elena S.", handle: "@elena", testimonial: "Consigliatissimo per una cena romantica.", imageSrc: "http://img.b2bpic.net/free-photo/homemade-cake-chestnuts-close-up_23-2148395150.jpg" }, { id: "4", name: "Luca B.", handle: "@luca", testimonial: "Tiramisù strepitoso.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-delicious-tiramisu-cafe_1303-25267.jpg" }, { id: "5", name: "Sofia F.", handle: "@sofia", testimonial: "Servizio eccellente e prezzi giusti.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-friends-having-lunch_23-2150598359.jpg" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -172,28 +78,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="I nostri numeri"
|
||||
description="La qualità certificata da anni di passione."
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "20+",
|
||||
description: "Anni di esperienza",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "150+",
|
||||
description: "Ricette originali",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "5k+",
|
||||
description: "Clienti felici",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
value: "100%",
|
||||
description: "Ingredienti freschi",
|
||||
},
|
||||
]}
|
||||
metrics={[{ id: "1", value: "20+", description: "Anni di esperienza" }, { id: "2", value: "150+", description: "Ricette originali" }, { id: "3", value: "5k+", description: "Clienti felici" }, { id: "4", value: "100%", description: "Ingredienti freschi" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -203,68 +88,21 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Domande frequenti"
|
||||
description="Tutto quello che devi sapere sulla nostra cucina."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-friends-having-lunch_23-2150598359.jpg?_wi=3"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-friends-having-lunch_23-2150598359.jpg"
|
||||
mediaAnimation="blur-reveal"
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Avete opzioni vegetariane?",
|
||||
content: "Sì, offriamo diverse opzioni vegetariane nel nostro menù.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "È necessaria la prenotazione?",
|
||||
content: "È consigliata, specialmente nei weekend.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Accettate animali?",
|
||||
content: "Certamente, i vostri amici a quattro zampe sono i benvenuti.",
|
||||
},
|
||||
]}
|
||||
faqsAnimation="entrance-slide"
|
||||
faqs={[{ id: "1", title: "Avete opzioni vegetariane?", content: "Sì, offriamo diverse opzioni vegetariane nel nostro menù." }, { id: "2", title: "È necessaria la prenotazione?", content: "È consigliata, specialmente nei weekend." }, { id: "3", title: "Accettate animali?", content: "Certamente, i vostri amici a quattro zampe sono i benvenuti." }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/map-mayotte-polygonal-mesh-line-map-flag-map_559531-11248.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/map-mayotte-polygonal-mesh-line-map-flag-map_559531-11248.jpg"
|
||||
logoText="Bella Napoli"
|
||||
columns={[
|
||||
{
|
||||
title: "Info",
|
||||
items: [
|
||||
{
|
||||
label: "Via Roma 1, Napoli",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "+39 012 345 678",
|
||||
href: "tel:+39012345678",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Orari",
|
||||
items: [
|
||||
{
|
||||
label: "Lun-Dom: 12:00-23:00",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Social",
|
||||
items: [
|
||||
{
|
||||
label: "WhatsApp",
|
||||
href: "https://wa.me/39012345678",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Info", items: [{ label: "Via Roma 1, Napoli", href: "#" }, { label: "+39 012 345 678", href: "tel:+39012345678" }] }, { title: "Orari", items: [{ label: "Lun-Dom: 12:00-23:00", href: "#" }] }, { title: "Social", items: [{ label: "WhatsApp", href: "https://wa.me/39012345678" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user