Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cedf4577b9 | |||
| 4928bea262 | |||
| e20f8e0523 | |||
| 4f2ad4aa93 | |||
| 7c6fd76f12 | |||
| f730516133 |
@@ -4,7 +4,6 @@ import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import "@/lib/gsap-setup";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Manrope } from "next/font/google";
|
||||
|
||||
@@ -34,7 +33,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} antialiased`}>
|
||||
<Tag />
|
||||
|
||||
{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
|
||||
189
src/app/page.tsx
189
src/app/page.tsx
@@ -32,27 +32,17 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Specialità",
|
||||
id: "about",
|
||||
},
|
||||
name: "Specialità", id: "about"},
|
||||
{
|
||||
name: "Recensioni",
|
||||
id: "testimonials",
|
||||
},
|
||||
name: "Recensioni", id: "testimonials"},
|
||||
{
|
||||
name: "Orari & Mappa",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Orari & Mappa", id: "contact"},
|
||||
]}
|
||||
brandName="King Pollo & Kebab"
|
||||
brandName="Grand Chiken"
|
||||
button={{
|
||||
text: "Ordina Ora",
|
||||
href: "#contact",
|
||||
}}
|
||||
text: "Ordina Ora", href: "#contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -62,37 +52,23 @@ export default function LandingPage() {
|
||||
description="Qualità, freschezza e tradizione. Goditi il meglio del pollo allo spiedo e del kebab in Via dei Mille."
|
||||
buttons={[
|
||||
{
|
||||
text: "Vieni a trovarci",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Vieni a trovarci", href: "#contact"},
|
||||
{
|
||||
text: "Ordina a domicilio",
|
||||
href: "#",
|
||||
},
|
||||
text: "Ordina a domicilio", href: "#"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-delicious-japanese-street-food_23-2149410196.jpg"
|
||||
imageAlt="Pollo allo spiedo di alta qualità"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/view-delicious-food-sold-streets-city_23-2151516941.jpg",
|
||||
alt: "Cliente felice 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/view-delicious-food-sold-streets-city_23-2151516941.jpg", alt: "Cliente felice 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/side-view-set-shish-kebab-baked-clay-oven_140725-12836.jpg",
|
||||
alt: "Cliente felice 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/side-view-set-shish-kebab-baked-clay-oven_140725-12836.jpg", alt: "Cliente felice 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/flat-lay-delicious-corn-dogs-plate_23-2149455089.jpg",
|
||||
alt: "Cliente felice 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/flat-lay-delicious-corn-dogs-plate_23-2149455089.jpg", alt: "Cliente felice 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-chicken-skewer-tray-with-red-pepper_23-2148699100.jpg",
|
||||
alt: "Cliente felice 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-chicken-skewer-tray-with-red-pepper_23-2148699100.jpg", alt: "Cliente felice 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/clay-pots-market-morocco_23-2148129862.jpg",
|
||||
alt: "Cliente felice 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/clay-pots-market-morocco_23-2148129862.jpg", alt: "Cliente felice 5"},
|
||||
]}
|
||||
avatarText="Più di 500 clienti soddisfatti ogni mese."
|
||||
/>
|
||||
@@ -102,7 +78,7 @@ export default function LandingPage() {
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="La nostra passione per il pollo"
|
||||
description="Da King Pollo & Kebab prepariamo ogni piatto con amore. Dallo spiedo croccante al kebab speziato, usiamo solo carne selezionata. Un ambiente informale e accogliente, perfetto per passare del tempo in famiglia o in compagnia di amici."
|
||||
description="Da Grand Chiken prepariamo ogni piatto con amore. Dallo spiedo croccante al kebab speziato, usiamo solo carne selezionata. Un ambiente informale e accogliente, perfetto per passare del tempo in famiglia o in compagnia di amici."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/pork-barbecue-cooked-grilled-charcoal-barbecue-is-beautiful-meat-fire-meat-coals_132075-13607.jpg"
|
||||
imageAlt="La nostra cucina"
|
||||
/>
|
||||
@@ -116,29 +92,19 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
icon: Utensils,
|
||||
title: "Consumazione sul posto",
|
||||
description: "Goditi il cibo nel nostro locale accogliente.",
|
||||
},
|
||||
title: "Consumazione sul posto", description: "Goditi il cibo nel nostro locale accogliente."},
|
||||
{
|
||||
icon: ShoppingBag,
|
||||
title: "Asporto",
|
||||
description: "Porta il gusto di King Pollo a casa tua.",
|
||||
},
|
||||
title: "Asporto", description: "Porta il gusto di Grand Chiken a casa tua."},
|
||||
{
|
||||
icon: Car,
|
||||
title: "Consegna a domicilio",
|
||||
description: "Il nostro pollo caldo direttamente alla tua porta.",
|
||||
},
|
||||
title: "Consegna a domicilio", description: "Il nostro pollo caldo direttamente alla tua porta."},
|
||||
{
|
||||
icon: Building2,
|
||||
title: "Accessibilità",
|
||||
description: "Locale senza barriere, accessibile in sedia a rotelle.",
|
||||
},
|
||||
title: "Accessibilità", description: "Locale senza barriere, accessibile in sedia a rotelle."},
|
||||
{
|
||||
icon: CreditCard,
|
||||
title: "Pagamenti NFC",
|
||||
description: "Accettiamo carte e pagamenti elettronici con facilità.",
|
||||
},
|
||||
title: "Pagamenti NFC", description: "Accettiamo carte e pagamenti elettronici con facilità."},
|
||||
]}
|
||||
title="I nostri punti di forza"
|
||||
description="Servizi pensati per il tuo comfort e la tua soddisfazione."
|
||||
@@ -151,48 +117,18 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Eccellente",
|
||||
quote: "Cibo delizioso, fresco e saporito, ottimo rapporto qualità-prezzo.",
|
||||
name: "Marco G.",
|
||||
role: "Cliente abituale",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-eating-street-food_23-2149048563.jpg",
|
||||
},
|
||||
id: "1", title: "Eccellente", quote: "Cibo delizioso, fresco e saporito, ottimo rapporto qualità-prezzo. La carne è tenerissima!", name: "Marco G.", role: "Cliente abituale", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-eating-street-food_23-2149048563.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
title: "Top",
|
||||
quote: "Kebab eccellente, il migliore in zona!",
|
||||
name: "Elena R.",
|
||||
role: "Appassionata di kebab",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-cooking_1098-13267.jpg",
|
||||
},
|
||||
id: "2", title: "Top", quote: "Kebab eccellente, il migliore in zona! Servizio impeccabile.", name: "Elena R.", role: "Appassionata di kebab", imageSrc: "http://img.b2bpic.net/free-photo/happy-cooking_1098-13267.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
title: "Consigliato",
|
||||
quote: "Il pollo allo spiedo è incredibile, succoso e ben cotto.",
|
||||
name: "Luca B.",
|
||||
role: "Famiglia",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-eating-dutch-waffles-street-near-cafe-street-food-holland_1321-1777.jpg",
|
||||
},
|
||||
id: "3", title: "Consigliato", quote: "Il pollo allo spiedo è incredibile, succoso e ben cotto. Lo raccomando vivamente.", name: "Luca B.", role: "Famiglia", imageSrc: "http://img.b2bpic.net/free-photo/man-eating-dutch-waffles-street-near-cafe-street-food-holland_1321-1777.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
title: "Ottimo servizio",
|
||||
quote: "Servizio rapido e locale pulito. Torneremo sicuramente.",
|
||||
name: "Giulia M.",
|
||||
role: "Studentessa",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-eating-restaurant_23-2148006700.jpg",
|
||||
},
|
||||
id: "4", title: "Ottimo servizio", quote: "Servizio rapido e locale pulito. Torneremo sicuramente per un'altra cena.", name: "Giulia M.", role: "Studentessa", imageSrc: "http://img.b2bpic.net/free-photo/woman-eating-restaurant_23-2148006700.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
title: "Una garanzia",
|
||||
quote: "Servizio di consegna rapido e cibo sempre caldo.",
|
||||
name: "Fabio C.",
|
||||
role: "Lavoratore locale",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-tourist-eats-ice-cream-city-walk_169016-21914.jpg",
|
||||
},
|
||||
id: "5", title: "Una garanzia", quote: "Servizio di consegna rapido e cibo sempre caldo e fragrante.", name: "Fabio C.", role: "Lavoratore locale", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-tourist-eats-ice-cream-city-walk_169016-21914.jpg"},
|
||||
]}
|
||||
title="Cosa dicono i nostri clienti"
|
||||
description="Una media di 4.1 stelle basata sull'amore dei nostri affezionati."
|
||||
description="Oltre 500+ recensioni positive dai nostri affezionati clienti."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -203,23 +139,14 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
icon: Flame,
|
||||
title: "Anni di esperienza",
|
||||
value: "10+",
|
||||
},
|
||||
id: "m1", icon: Flame,
|
||||
title: "Anni di esperienza", value: "10+"},
|
||||
{
|
||||
id: "m2",
|
||||
icon: Star,
|
||||
title: "Valutazione media",
|
||||
value: "4.1",
|
||||
},
|
||||
id: "m2", icon: Star,
|
||||
title: "Valutazione media", value: "4.1"},
|
||||
{
|
||||
id: "m3",
|
||||
icon: Truck,
|
||||
title: "Consegne mensili",
|
||||
value: "500+",
|
||||
},
|
||||
id: "m3", icon: Truck,
|
||||
title: "Consegne mensili", value: "500+"},
|
||||
]}
|
||||
title="Il successo in numeri"
|
||||
description="Esperienza al servizio del tuo palato."
|
||||
@@ -232,23 +159,14 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Avete opzioni per vegetariani?",
|
||||
content: "Sì, offriamo insalate fresche e opzioni vegetariane nel menu.",
|
||||
},
|
||||
id: "f1", title: "Avete opzioni per vegetariani?", content: "Sì, offriamo insalate fresche e opzioni vegetariane nel menu."},
|
||||
{
|
||||
id: "f2",
|
||||
title: "È necessaria la prenotazione?",
|
||||
content: "Non è obbligatoria, ma consigliata per gruppi numerosi nel weekend.",
|
||||
},
|
||||
id: "f2", title: "È necessaria la prenotazione?", content: "Non è obbligatoria, ma consigliata per gruppi numerosi nel weekend."},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Dove si trova il locale?",
|
||||
content: "Siamo in Via dei Mille, 41, Genova.",
|
||||
},
|
||||
id: "f3", title: "Dove si trova il locale?", content: "Siamo in Via dei Mille, 41, Genova."},
|
||||
]}
|
||||
title="Domande frequenti"
|
||||
description="Tutto quello che c'è da sapere su King Pollo & Kebab."
|
||||
description="Tutto quello che c'è da sapere su Grand Chiken."
|
||||
faqsAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-shot-young-curly-woman-feels-hungry-eats-sandwich-with-appetite-poses-street-focused-somewhere-stands-outdoors-against-blurred-background-prefers-junk-food-nutrition-concept_273609-57804.jpg"
|
||||
imageAlt="Locale di Genova"
|
||||
@@ -260,16 +178,13 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
tag="Orari e Contatti"
|
||||
title="Vieni a trovarci o ordina subito"
|
||||
description="Via dei Mille, 41, 16147 Genova (GE) | Tel: +39 351 224 1877. \n\nOrari: Lun-Mer e Ven-Dom 11:00–23:30; Giovedì 11:00–00:30."
|
||||
description="📍 Via dei Mille, 41, 16147 Genova (GE) \n📞 +39 351 224 1877 \n\n⏰ Orari: Lun-Mer e Ven-Dom 11:00–23:30; Giovedì 11:00–00:30."
|
||||
buttons={[
|
||||
{
|
||||
text: "Chiama ora",
|
||||
href: "tel:+393512241877",
|
||||
},
|
||||
text: "Chiama ora", href: "tel:+393512241877"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -280,44 +195,32 @@ export default function LandingPage() {
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "#hero",
|
||||
},
|
||||
label: "Home", href: "#hero"},
|
||||
{
|
||||
label: "Chi Siamo",
|
||||
href: "#about",
|
||||
},
|
||||
label: "Chi Siamo", href: "#about"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Orari",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Orari", href: "#contact"},
|
||||
{
|
||||
label: "Contatti",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contatti", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Termini di Servizio",
|
||||
href: "#",
|
||||
},
|
||||
label: "Termini di Servizio", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="King Pollo & Kebab"
|
||||
logoText="Grand Chiken"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user