Update src/app/page.tsx
This commit is contained in:
171
src/app/page.tsx
171
src/app/page.tsx
@@ -29,21 +29,13 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Accueil",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Accueil", id: "hero"},
|
||||
{
|
||||
name: "À propos",
|
||||
id: "about",
|
||||
},
|
||||
name: "À propos", id: "about"},
|
||||
{
|
||||
name: "Destinations",
|
||||
id: "features",
|
||||
},
|
||||
name: "Destinations", id: "features"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="LuxeVoyage"
|
||||
/>
|
||||
@@ -55,69 +47,37 @@ export default function LandingPage() {
|
||||
description="Nous concevons vos voyages les plus précieux, loin des sentiers battus, au cœur de l'exclusivité absolue."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Marc-Antoine D.",
|
||||
handle: "CEO",
|
||||
testimonial: "Une organisation irréprochable et des adresses confidentielles. Inoubliable.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-traveling-with-backpack_53876-14387.jpg?_wi=1",
|
||||
},
|
||||
name: "Marc-Antoine D.", handle: "CEO", testimonial: "Une organisation irréprochable et des adresses confidentielles. Inoubliable.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-traveling-with-backpack_53876-14387.jpg"},
|
||||
{
|
||||
name: "Sophie M.",
|
||||
handle: "Architecte",
|
||||
testimonial: "Le luxe dans le moindre détail. Une agence qui comprend le vrai sens du voyage.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-taking-walk-by-pool-vacation_23-2149369706.jpg?_wi=1",
|
||||
},
|
||||
name: "Sophie M.", handle: "Architecte", testimonial: "Le luxe dans le moindre détail. Une agence qui comprend le vrai sens du voyage.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-taking-walk-by-pool-vacation_23-2149369706.jpg"},
|
||||
{
|
||||
name: "Julien V.",
|
||||
handle: "Entrepreneur",
|
||||
testimonial: "La simplicité de l'exceptionnel. Une expérience client parfaite.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-suitcase-standing-by-airport_1157-33525.jpg?_wi=1",
|
||||
},
|
||||
name: "Julien V.", handle: "Entrepreneur", testimonial: "La simplicité de l'exceptionnel. Une expérience client parfaite.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-suitcase-standing-by-airport_1157-33525.jpg"},
|
||||
{
|
||||
name: "Hélène G.",
|
||||
handle: "Avocate",
|
||||
testimonial: "Des souvenirs gravés à vie, merci pour cette expertise.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-wrapped-towel-drinking-coffee_1153-4065.jpg?_wi=1",
|
||||
},
|
||||
name: "Hélène G.", handle: "Avocate", testimonial: "Des souvenirs gravés à vie, merci pour cette expertise.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-wrapped-towel-drinking-coffee_1153-4065.jpg"},
|
||||
{
|
||||
name: "Charles B.",
|
||||
handle: "Directeur",
|
||||
testimonial: "Un service digne des plus grands palaces.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-traveler-posing_23-2148357248.jpg?_wi=1",
|
||||
},
|
||||
name: "Charles B.", handle: "Directeur", testimonial: "Un service digne des plus grands palaces.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-traveler-posing_23-2148357248.jpg"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Planifier votre voyage",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Planifier votre voyage", href: "#contact"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/building-with-balconies-beautiful-pink-sunset-sk_181624-59238.jpg"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-traveling-with-backpack_53876-14387.jpg",
|
||||
alt: "Marc-Antoine D.",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/woman-traveling-with-backpack_53876-14387.jpg", alt: "Marc-Antoine D."},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/couple-taking-walk-by-pool-vacation_23-2149369706.jpg",
|
||||
alt: "Sophie M.",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/couple-taking-walk-by-pool-vacation_23-2149369706.jpg", alt: "Sophie M."},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-with-suitcase-standing-by-airport_1157-33525.jpg",
|
||||
alt: "Julien V.",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/woman-with-suitcase-standing-by-airport_1157-33525.jpg", alt: "Julien V."},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-wrapped-towel-drinking-coffee_1153-4065.jpg",
|
||||
alt: "Hélène G.",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/woman-wrapped-towel-drinking-coffee_1153-4065.jpg", alt: "Hélène G."},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-young-traveler-posing_23-2148357248.jpg",
|
||||
alt: "Charles B.",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-young-traveler-posing_23-2148357248.jpg", alt: "Charles B."},
|
||||
]}
|
||||
avatarText="Rejoignez nos clients privilégiés"
|
||||
/>
|
||||
@@ -129,9 +89,7 @@ export default function LandingPage() {
|
||||
title="Plus qu'une agence, une conciergerie de voyages"
|
||||
buttons={[
|
||||
{
|
||||
text: "En savoir plus",
|
||||
href: "#",
|
||||
},
|
||||
text: "En savoir plus", href: "#"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -144,20 +102,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Îles Privées",
|
||||
description: "L'évasion totale sous les tropiques.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-outdoor-swimming-pool-hotel-resort_74190-6875.jpg",
|
||||
},
|
||||
title: "Îles Privées", description: "L'évasion totale sous les tropiques.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-outdoor-swimming-pool-hotel-resort_74190-6875.jpg"},
|
||||
{
|
||||
title: "Cimes des Alpes",
|
||||
description: "Le luxe des sommets enneigés.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/family-family-christmas-vacation-woman-little-girl-forest-people-walks_1157-46070.jpg",
|
||||
},
|
||||
title: "Cimes des Alpes", description: "Le luxe des sommets enneigés.", imageSrc: "http://img.b2bpic.net/free-photo/family-family-christmas-vacation-woman-little-girl-forest-people-walks_1157-46070.jpg"},
|
||||
{
|
||||
title: "Japon Zen",
|
||||
description: "Immersion culturelle et raffinement.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bamboo-forest-asian-woman-wearing-japanese-traditional-kimono-bamboo-forest-kyoto-japan_335224-139.jpg",
|
||||
},
|
||||
title: "Japon Zen", description: "Immersion culturelle et raffinement.", imageSrc: "http://img.b2bpic.net/free-photo/bamboo-forest-asian-woman-wearing-japanese-traditional-kimono-bamboo-forest-kyoto-japan_335224-139.jpg"},
|
||||
]}
|
||||
title="Destinations secrètes"
|
||||
description="Des lieux préservés pour une sérénité totale."
|
||||
@@ -168,42 +117,18 @@ export default function LandingPage() {
|
||||
<TestimonialCardSix
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
animationType="blur-reveal"
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Marc-Antoine D.",
|
||||
handle: "CEO",
|
||||
testimonial: "Une organisation irréprochable.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-traveling-with-backpack_53876-14387.jpg?_wi=2",
|
||||
},
|
||||
id: "t1", name: "Marc-Antoine D.", handle: "CEO", testimonial: "Une organisation irréprochable.", imageSrc: "http://img.b2bpic.net/free-photo/woman-traveling-with-backpack_53876-14387.jpg"},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Sophie M.",
|
||||
handle: "Architecte",
|
||||
testimonial: "Le luxe dans les détails.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-taking-walk-by-pool-vacation_23-2149369706.jpg?_wi=2",
|
||||
},
|
||||
id: "t2", name: "Sophie M.", handle: "Architecte", testimonial: "Le luxe dans les détails.", imageSrc: "http://img.b2bpic.net/free-photo/couple-taking-walk-by-pool-vacation_23-2149369706.jpg"},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Julien V.",
|
||||
handle: "Entrepreneur",
|
||||
testimonial: "Expérience parfaite.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-suitcase-standing-by-airport_1157-33525.jpg?_wi=2",
|
||||
},
|
||||
id: "t3", name: "Julien V.", handle: "Entrepreneur", testimonial: "Expérience parfaite.", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-suitcase-standing-by-airport_1157-33525.jpg"},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Hélène G.",
|
||||
handle: "Avocate",
|
||||
testimonial: "Souvenirs gravés.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-wrapped-towel-drinking-coffee_1153-4065.jpg?_wi=2",
|
||||
},
|
||||
id: "t4", name: "Hélène G.", handle: "Avocate", testimonial: "Souvenirs gravés.", imageSrc: "http://img.b2bpic.net/free-photo/woman-wrapped-towel-drinking-coffee_1153-4065.jpg"},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Charles B.",
|
||||
handle: "Directeur",
|
||||
testimonial: "Service digne des grands.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-traveler-posing_23-2148357248.jpg?_wi=2",
|
||||
},
|
||||
id: "t5", name: "Charles B.", handle: "Directeur", testimonial: "Service digne des grands.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-traveler-posing_23-2148357248.jpg"},
|
||||
]}
|
||||
title="Ce que nos clients disent"
|
||||
description="L'excellence au service de vos rêves d'ailleurs."
|
||||
@@ -217,22 +142,14 @@ export default function LandingPage() {
|
||||
description="Laissez-nous vos coordonnées pour une consultation privée."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Nom complet",
|
||||
required: true,
|
||||
name: "name", type: "text", placeholder: "Nom complet", required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "E-mail",
|
||||
required: true,
|
||||
name: "email", type: "email", placeholder: "E-mail", required: true,
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Votre projet...",
|
||||
rows: 4,
|
||||
name: "message", placeholder: "Votre projet...", rows: 4,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/elderly-man-searching-landmarks_482257-81650.jpg"
|
||||
/>
|
||||
@@ -242,29 +159,19 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "LuxeVoyage",
|
||||
items: [
|
||||
title: "LuxeVoyage", items: [
|
||||
{
|
||||
label: "À propos",
|
||||
href: "#about",
|
||||
},
|
||||
label: "À propos", href: "#about"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contact", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Légal",
|
||||
items: [
|
||||
title: "Légal", items: [
|
||||
{
|
||||
label: "Mentions légales",
|
||||
href: "#",
|
||||
},
|
||||
label: "Mentions légales", href: "#"},
|
||||
{
|
||||
label: "Confidentialité",
|
||||
href: "#",
|
||||
},
|
||||
label: "Confidentialité", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user