Compare commits
13 Commits
version_28
...
version_34
| Author | SHA1 | Date | |
|---|---|---|---|
| df6f17f401 | |||
| e00d16cf8b | |||
| 54581835c6 | |||
| 83ce6544fe | |||
| 218ced6d0a | |||
| 4b36495886 | |||
| 2fc3dd6c8a | |||
| b2affd8e6d | |||
| 176bac9b7d | |||
| 9e6280c4c2 | |||
| 170f21abc3 | |||
| ee01682cea | |||
| 2bd72ba7df |
@@ -8,7 +8,7 @@ import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
|
||||
export default function LandingPage() {
|
||||
const handleCall = () => {
|
||||
@@ -86,9 +86,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", brand: "Top Rated • Authentisch", name: "Margherita D.O.P. - Mit Fior di Latte & San Marzano", price: "18.50 CHF", rating: 5, reviewCount: "120", imageSrc: "https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?q=80&w=800&auto=format&fit=crop" },
|
||||
{ id: "p2", brand: "Top Rated • Würzig", name: "Diavola Luxe - Mit pikanter Ventricina-Salami", price: "21.00 CHF", rating: 5, reviewCount: "85", imageSrc: "https://images.unsplash.com/photo-1574071318508-1cdbab80d002?q=80&w=800&auto=format&fit=crop" },
|
||||
{ id: "p3", brand: "Top Rated • Frisch", name: "Verdure Fresche - Mit Grillgemüse & Oliven", price: "19.50 CHF", rating: 5, reviewCount: "92", imageSrc: "https://images.unsplash.com/photo-1593560708920-61dd98c46a4e?q=80&w=800&auto=format&fit=crop" },
|
||||
{ id: "p1", brand: "Klassiker", name: "Margherita", price: "10 CHF", rating: 5, reviewCount: "120", imageSrc: "https://img.b2bpic.net/free-photo/margherita-pizza-with-fresh-basil-and-mozzarella.jpg" },
|
||||
{ id: "p2", brand: "Pikant", name: "Diavola Luxe", price: "22.00 CHF", rating: 5, reviewCount: "85", imageSrc: "https://img.b2bpic.net/free-photo/spicy-salami-diavola-pizza-with-chili.jpg" },
|
||||
{ id: "p3", brand: "Vegetarisch", name: "Verdure Fresche", price: "20.50 CHF", rating: 5, reviewCount: "92", imageSrc: "https://img.b2bpic.net/free-photo/vegetarian-pizza-with-bell-peppers-zucchini-and-olives.jpg" },
|
||||
{ id: "p4", brand: "Spezial", name: "Prosciutto & Funghi", price: "21.50 CHF", rating: 5, reviewCount: "45", imageSrc: "https://img.b2bpic.net/free-photo/pizza-prosciutto-funghi-with-mushrooms-and-ham.jpg" },
|
||||
{ id: "p5", brand: "Spezial", name: "Tonno & Cipolla", price: "21.00 CHF", rating: 4, reviewCount: "30", imageSrc: "https://img.b2bpic.net/free-photo/tuna-and-red-onion-pizza-artisan-style.jpg" },
|
||||
{ id: "p6", brand: "Klassiker", name: "Capricciosa", price: "23.00 CHF", rating: 5, reviewCount: "60", imageSrc: "https://img.b2bpic.net/free-photo/capricciosa-pizza-with-artichokes-mushrooms-and-olives.jpg" },
|
||||
]}
|
||||
title="Unsere Speisekarte"
|
||||
description="Entdecken Sie die Qualität unserer handverlesenen Zutaten. Von feinstem Mehl bis zu den frischesten Tomaten aus Italien – jedes Element ist auf authentischen Geschmack ausgerichtet."
|
||||
@@ -100,16 +103,23 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFive
|
||||
title="Was unsere Gäste sagen"
|
||||
description="Authentische neapolitanische Pizza begeistert – lesen Sie, warum Kunden Pizza da Vincenzo in Arbon schätzen."
|
||||
textboxLayout="split"
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Marco Rossi", date: "Vor 2 Wochen", title: "Unglaublich gut!", quote: "Die beste neapolitanische Pizza, die ich in der Schweiz gegessen habe. Absolut empfehlenswert.", tag: "Top", avatarSrc: "https://i.pravatar.cc/150?u=1" },
|
||||
{ id: "t2", name: "Sarah Müller", date: "Vor 1 Monat", title: "Wahrer Genuss", quote: "Der Teig ist einfach perfekt – genau wie in Italien. Man merkt die 48 Stunden Ruhezeit.", tag: "Stammgast", avatarSrc: "https://i.pravatar.cc/150?u=2" },
|
||||
{ id: "t3", name: "Lukas Weber", date: "Vor 3 Tagen", title: "Mein go-to Takeout", quote: "Schnell, freundlich und extrem lecker. Die Diavola ist der Wahnsinn.", tag: "Fan", avatarSrc: "https://i.pravatar.cc/150?u=3" }
|
||||
]}
|
||||
<TestimonialCardSixteen
|
||||
title="Das sagen unsere Kunden"
|
||||
description="Erfahren Sie, warum Pizza da Vincenzo die erste Wahl für authentische neapolitanische Pizza in Arbon ist."
|
||||
useInvertedBackground={true}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
kpiItems={[
|
||||
{ value: "5.0", label: "Google Schnitt" },
|
||||
{ value: "500+", label: "Zufriedene Gäste" },
|
||||
{ value: "100%", label: "Neapolitanisch" }
|
||||
]}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Elena S.", role: "Stammkundin", company: "Arbon", rating: 5 },
|
||||
{ id: "2", name: "Marco R.", role: "Feinschmecker", company: "St. Gallen", rating: 5 },
|
||||
{ id: "3", name: "Julia M.", role: "Liebhaberin", company: "Romanshorn", rating: 5 },
|
||||
{ id: "4", name: "Luca T.", role: "Pizza-Fan", company: "Amriswil", rating: 5 }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user