diff --git a/src/app/page.tsx b/src/app/page.tsx index 31b4892..2a5f594 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,8 @@ import HeroCentered from '@/components/sections/hero/HeroCentered'; import MediaAbout from '@/components/sections/about/MediaAbout'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; -import { Clock, Flame, Heart, MapPin, Music, Utensils } from "lucide-react"; +import CardStack from '@/components/cardStack/CardStack'; +import { Clock, Flame, Heart, MapPin, Music, Utensils, Star, Wine } from "lucide-react"; export default function LandingPage() { return ( @@ -30,14 +31,11 @@ export default function LandingPage() { -
- + + gridVariant="two-items-per-row" + > +
+ +

Tapas & Delicatessen

+

Van klassieke calamares tot huisgemaakte aioli en Spaanse olijven.

+
+
+ +

Parrilla Specials

+

Authentieke vlees- en visgerechten bereid op onze Spaanse grill.

+
+
@@ -122,19 +96,10 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} testimonials={[ - { - id: "1", name: "Maury Caceres", role: "Gast", testimonial: "Aan de Oudegracht bevindt zich een stukje van Spanje! Voel je je gauw thuis!", imageSrc: "http://img.b2bpic.net/free-photo/young-friends-having-good-time_23-2148395391.jpg"}, - { - id: "2", name: "Luc Stoffels", role: "Gast", testimonial: "Wat een top sfeer en avond altijd! Fermin en Ele waren passie en uitbundigheid.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-hanging-out-together_23-2149143974.jpg"}, - { - id: "3", name: "Abdel A", role: "Gast", testimonial: "Gefrituurde calamares was lekker, gambas konden ook nog wel. De Syrische ober was top.", imageSrc: "http://img.b2bpic.net/free-photo/young-couple-having-fun-while-toasting-with-champagne-taking-selfie-with-mobile-phone-meal-dining-table_637285-10244.jpg"}, - { - id: "4", name: "Janet", role: "Gast", testimonial: "Lekker eten mooi muziekje erbij. Goede bankjes lekker sfeertje. Heerlijk gegeten.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-holding-book-close-up_23-2148396302.jpg"}, - { - id: "5", name: "Ineke", role: "Gast", testimonial: "Heerlijk gegeten en genoten van Spaanse live muziek en vriendelijk personeel. Top sfeer.", imageSrc: "http://img.b2bpic.net/free-photo/girl-sitting-table-holding-mobile-phone-indoors_171337-17097.jpg"}, + { id: "1", name: "Maury Caceres", role: "Gast", testimonial: "Aan de Oudegracht bevindt zich een stukje van Spanje!" }, + { id: "2", name: "Luc Stoffels", role: "Gast", testimonial: "Wat een top sfeer en avond altijd!" }, ]} title="Wat zeggen onze gasten?" - description="We zijn trots op de warme woorden van onze trouwe bezoekers." />
@@ -143,20 +108,13 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} faqs={[ - { - id: "q1", title: "Kan ik reserveren?", content: "Ja, neem telefonisch contact met ons op via 030 231 2165."}, - { - id: "q2", title: "Waar zijn jullie gevestigd?", content: "Wij bevinden ons aan de Oudegracht 211 in Utrecht."}, - { - id: "q3", title: "Is er live muziek?", content: "Wij organiseren regelmatig avonden met live muziek voor die echte Spaanse sfeer."}, + { id: "q1", title: "Kan ik reserveren?", content: "Ja, neem telefonisch contact met ons op via 030 231 2165." }, + { id: "q2", title: "Waar zijn jullie gevestigd?", content: "Wij bevinden ons aan de Oudegracht 211 in Utrecht." }, ]} title="Veelgestelde Vragen" - description="Heb je vragen over ons restaurant?" faqsAnimation="slide-up" buttons={[ - { - text: "Reserveer nu", href: "#contact" - } + { text: "Direct Reserveren", href: "tel:0302312165" } ]} /> @@ -164,39 +122,17 @@ export default function LandingPage() {