Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a7850ab170 |
169
src/app/page.tsx
169
src/app/page.tsx
@@ -31,21 +31,13 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "#hero"},
|
||||||
id: "#hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Over ons",
|
name: "Over ons", id: "#about"},
|
||||||
id: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Ervaringen",
|
name: "Ervaringen", id: "#testimonials"},
|
||||||
id: "#testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "#contact"},
|
||||||
id: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Restaurant eLe"
|
brandName="Restaurant eLe"
|
||||||
/>
|
/>
|
||||||
@@ -54,63 +46,40 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCentered
|
<HeroCentered
|
||||||
background={{
|
background={{
|
||||||
variant: "radial-gradient",
|
variant: "radial-gradient"}}
|
||||||
}}
|
|
||||||
title="Een stukje Spanje aan de Utrechtse gracht"
|
title="Een stukje Spanje aan de Utrechtse gracht"
|
||||||
description="Ervaar de passie, uitbundigheid en heerlijke smaken van de echte Spaanse keuken in het hart van Utrecht."
|
description="Ervaar de passie, uitbundigheid en heerlijke smaken van de echte Spaanse keuken in het hart van Utrecht."
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598413.jpg",
|
src: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598413.jpg", alt: "Gasten"},
|
||||||
alt: "Gasten",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/very-good-smiling-brunette-woman-shows-ok-okay-hand-sign-looking-satisfied-recommend-great-deal-pleased-with-quality-standing-white-background_176420-46695.jpg",
|
src: "http://img.b2bpic.net/free-photo/very-good-smiling-brunette-woman-shows-ok-okay-hand-sign-looking-satisfied-recommend-great-deal-pleased-with-quality-standing-white-background_176420-46695.jpg", alt: "Gasten"},
|
||||||
alt: "Gasten",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/high-angle-smiley-people-with-drinks_23-2150124809.jpg",
|
src: "http://img.b2bpic.net/free-photo/high-angle-smiley-people-with-drinks_23-2150124809.jpg", alt: "Gasten"},
|
||||||
alt: "Gasten",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/beautiful-young-people-having-dinner-together_23-2148454086.jpg",
|
src: "http://img.b2bpic.net/free-photo/beautiful-young-people-having-dinner-together_23-2148454086.jpg", alt: "Gasten"},
|
||||||
alt: "Gasten",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/pretty-white-woman-stylish-summer-bohemain-autfit-posing-tropical-cafe_273443-3153.jpg",
|
src: "http://img.b2bpic.net/free-photo/pretty-white-woman-stylish-summer-bohemain-autfit-posing-tropical-cafe_273443-3153.jpg", alt: "Gasten"},
|
||||||
alt: "Gasten",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Bekijk het Menu",
|
text: "Bekijk het Menu", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Authentieke Tapas", icon: Flame,
|
||||||
text: "Authentieke Tapas",
|
|
||||||
icon: Flame,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Live Muziek", icon: Music,
|
||||||
text: "Live Muziek",
|
|
||||||
icon: Music,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Oudegracht Locatie", icon: MapPin,
|
||||||
text: "Oudegracht Locatie",
|
|
||||||
icon: MapPin,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Spaanse Passie", icon: Heart,
|
||||||
text: "Spaanse Passie",
|
|
||||||
icon: Heart,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Dagelijks Geopend", icon: Clock,
|
||||||
text: "Dagelijks Geopend",
|
|
||||||
icon: Clock,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -133,19 +102,13 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Authentieke Spaanse Keuken",
|
title: "Authentieke Spaanse Keuken", description: "Geniet van klassieke gerechten zoals calamares en gambas, bereid met passie.", icon: Utensils,
|
||||||
description: "Geniet van klassieke gerechten zoals calamares en gambas, bereid met passie.",
|
|
||||||
icon: Utensils,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Levendige Sfeer",
|
title: "Levendige Sfeer", description: "Regelmatig live muziek en een uitbundige Spaanse ambiance die Utrecht mist.", icon: Music,
|
||||||
description: "Regelmatig live muziek en een uitbundige Spaanse ambiance die Utrecht mist.",
|
|
||||||
icon: Music,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Top Locatie",
|
title: "Top Locatie", description: "Gelegen aan de iconische Oudegracht in een sfeervol historisch pand.", icon: MapPin,
|
||||||
description: "Gelegen aan de iconische Oudegracht in een sfeervol historisch pand.",
|
|
||||||
icon: MapPin,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Waarom kiezen voor eLe?"
|
title="Waarom kiezen voor eLe?"
|
||||||
@@ -160,40 +123,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
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"},
|
||||||
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",
|
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"},
|
||||||
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",
|
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"},
|
||||||
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",
|
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"},
|
||||||
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",
|
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"},
|
||||||
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",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Wat zeggen onze gasten?"
|
title="Wat zeggen onze gasten?"
|
||||||
description="We zijn trots op de warme woorden van onze trouwe bezoekers."
|
description="We zijn trots op de warme woorden van onze trouwe bezoekers."
|
||||||
@@ -206,24 +144,20 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "q1",
|
id: "q1", title: "Kan ik reserveren?", content: "Ja, neem telefonisch contact met ons op via 030 231 2165."},
|
||||||
title: "Kan ik reserveren?",
|
|
||||||
content: "Ja, neem telefonisch contact met ons op via 030 231 2165.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q2",
|
id: "q2", title: "Waar zijn jullie gevestigd?", content: "Wij bevinden ons aan de Oudegracht 211 in Utrecht."},
|
||||||
title: "Waar zijn jullie gevestigd?",
|
|
||||||
content: "Wij bevinden ons aan de Oudegracht 211 in Utrecht.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q3",
|
id: "q3", title: "Is er live muziek?", content: "Wij organiseren regelmatig avonden met live muziek voor die echte Spaanse sfeer."},
|
||||||
title: "Is er live muziek?",
|
|
||||||
content: "Wij organiseren regelmatig avonden met live muziek voor die echte Spaanse sfeer.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Veelgestelde Vragen"
|
title="Veelgestelde Vragen"
|
||||||
description="Heb je vragen over ons restaurant?"
|
description="Heb je vragen over ons restaurant?"
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
|
buttons={[
|
||||||
|
{
|
||||||
|
text: "Reserveer nu", href: "#contact"
|
||||||
|
}
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -231,14 +165,11 @@ export default function LandingPage() {
|
|||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
text="Wil je reserveren of heb je een vraag? Bel ons direct op 030 231 2165 of kom langs aan de Oudegracht 211."
|
text="Wil je reserveren of heb je een vraag? Bel ons direct op 030 231 2165 of kom langs aan de Oudegracht 211."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Bel direct: 030 231 2165",
|
text: "Bel direct: 030 231 2165", href: "tel:0302312165"},
|
||||||
href: "tel:0302312165",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -247,37 +178,23 @@ export default function LandingPage() {
|
|||||||
<FooterBase
|
<FooterBase
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Navigatie",
|
title: "Navigatie", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Home",
|
label: "Home", href: "#hero"},
|
||||||
href: "#hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Over ons",
|
label: "Over ons", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Socials & Reviews",
|
title: "Socials & Reviews", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Google Reviews",
|
label: "Google Reviews", href: "https://www.google.com/maps/place/Restaurant+eLe"},
|
||||||
href: "https://www.google.com/maps/place/Restaurant+eLe",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Instagram",
|
label: "Instagram", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Facebook",
|
label: "Facebook", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -287,4 +204,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user