Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
296
src/app/page.tsx
296
src/app/page.tsx
@@ -30,26 +30,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Accueil",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "À Propos",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
},
|
||||
{
|
||||
name: "Projets",
|
||||
id: "portfolio",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Accueil", id: "hero" },
|
||||
{ name: "À Propos", id: "about" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Projets", id: "portfolio" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Régis Lannoy"
|
||||
/>
|
||||
@@ -57,108 +42,32 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Transformer les espaces en expériences de vie exceptionnelles"
|
||||
description="Régis Lannoy, architecte d’intérieur à Lyon. Nous créons des environnements uniques, alliant luxe, fonctionnalité et design sur-mesure pour sublimer votre intérieur."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Jean Dupont",
|
||||
handle: "@client",
|
||||
testimonial: "Une transformation incroyable de mon loft. Un professionnalisme rare.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/building-bottom-view-with-plane_23-2148107063.jpg?_wi=1",
|
||||
imageAlt: "luxury interior design living room",
|
||||
},
|
||||
{
|
||||
name: "Marie Curie",
|
||||
handle: "@client",
|
||||
testimonial: "Le souci du détail est impressionnant. Je recommande vivement.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-end-professional-cabinet-used-psychotherapy-meetings_482257-117710.jpg?_wi=1",
|
||||
imageAlt: "luxury interior design living room",
|
||||
},
|
||||
{
|
||||
name: "Pierre Martin",
|
||||
handle: "@client",
|
||||
testimonial: "Un accompagnement sur-mesure du début à la fin.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-kitchen-interior-design_23-2150976526.jpg",
|
||||
imageAlt: "luxury interior design living room",
|
||||
},
|
||||
{
|
||||
name: "Sophie Dubois",
|
||||
handle: "@client",
|
||||
testimonial: "Régis a compris immédiatement nos besoins pour notre rénovation.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-daily-activities-minimal-decorated-room_23-2150407613.jpg?_wi=1",
|
||||
imageAlt: "luxury interior design living room",
|
||||
},
|
||||
{
|
||||
name: "Luc Laurent",
|
||||
handle: "@client",
|
||||
testimonial: "Le résultat est tout simplement exceptionnel.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-view-open-black-kitchen-island-drawer-minimal-storage_169016-71131.jpg?_wi=1",
|
||||
imageAlt: "luxury interior design living room",
|
||||
},
|
||||
{ name: "Jean Dupont", handle: "@client", testimonial: "Une transformation incroyable de mon loft. Un professionnalisme rare.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/building-bottom-view-with-plane_23-2148107063.jpg", imageAlt: "luxury interior design living room" },
|
||||
{ name: "Marie Curie", handle: "@client", testimonial: "Le souci du détail est impressionnant. Je recommande vivement.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/high-end-professional-cabinet-used-psychotherapy-meetings_482257-117710.jpg", imageAlt: "luxury interior design living room" },
|
||||
{ name: "Pierre Martin", handle: "@client", testimonial: "Un accompagnement sur-mesure du début à la fin.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-kitchen-interior-design_23-2150976526.jpg", imageAlt: "luxury interior design living room" },
|
||||
{ name: "Sophie Dubois", handle: "@client", testimonial: "Régis a compris immédiatement nos besoins pour notre rénovation.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-daily-activities-minimal-decorated-room_23-2150407613.jpg", imageAlt: "luxury interior design living room" },
|
||||
{ name: "Luc Laurent", handle: "@client", testimonial: "Le résultat est tout simplement exceptionnel.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-view-open-black-kitchen-island-drawer-minimal-storage_169016-71131.jpg", imageAlt: "luxury interior design living room" },
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Démarrer votre projet",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "Demander un devis",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/building-bottom-view-with-plane_23-2148107063.jpg?_wi=2"
|
||||
buttons={[{ text: "Démarrer votre projet", href: "#contact" }, { text: "Demander un devis", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/building-bottom-view-with-plane_23-2148107063.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/senior-business-woman-smiling_1187-1564.jpg",
|
||||
alt: "Client portrait A",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg",
|
||||
alt: "Client portrait B",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-successful-grey-haired-female-ceo-smiling-content-experienced-beautiful-businesswoman-posing-office-room-business-company-appearance-expression-concept_74855-11905.jpg",
|
||||
alt: "Client portrait C",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg",
|
||||
alt: "Client portrait D",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-business-woman-reading-from-tablet_23-2148317323.jpg",
|
||||
alt: "Client portrait E",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/senior-business-woman-smiling_1187-1564.jpg", alt: "Client portrait A" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", alt: "Client portrait B" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-successful-grey-haired-female-ceo-smiling-content-experienced-beautiful-businesswoman-posing-office-room-business-company-appearance-expression-concept_74855-11905.jpg", alt: "Client portrait C" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg", alt: "Client portrait D" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/front-view-business-woman-reading-from-tablet_23-2148317323.jpg", alt: "Client portrait E" },
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Architecture d'intérieur",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Design sur-mesure",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Rénovation de luxe",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Espaces commerciaux",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Patrimoine lyonnais",
|
||||
},
|
||||
{ type: "text", text: "Architecture d'intérieur" },
|
||||
{ type: "text", text: "Design sur-mesure" },
|
||||
{ type: "text", text: "Rénovation de luxe" },
|
||||
{ type: "text", text: "Espaces commerciaux" },
|
||||
{ type: "text", text: "Patrimoine lyonnais" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -170,20 +79,11 @@ export default function LandingPage() {
|
||||
title="L'Art de l'Espace"
|
||||
description="Basé à Lyon au 43 Quai Saint-Vincent, Régis Lannoy apporte une vision architecturale précise à chaque projet. Notre approche se concentre sur l'harmonie, la lumière et le respect du patrimoine tout en insufflant une modernité absolue."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Expertise Locale",
|
||||
description: "Une connaissance approfondie des espaces lyonnais.",
|
||||
},
|
||||
{
|
||||
title: "Accompagnement",
|
||||
description: "Gestion complète du permis à la livraison finale.",
|
||||
},
|
||||
{
|
||||
title: "Design Sur-mesure",
|
||||
description: "Chaque détail est pensé spécifiquement pour votre intérieur.",
|
||||
},
|
||||
{ title: "Expertise Locale", description: "Une connaissance approfondie des espaces lyonnais." },
|
||||
{ title: "Accompagnement", description: "Gestion complète du permis à la livraison finale." },
|
||||
{ title: "Design Sur-mesure", description: "Chaque détail est pensé spécifiquement pour votre intérieur." },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-end-professional-cabinet-used-psychotherapy-meetings_482257-117710.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-end-professional-cabinet-used-psychotherapy-meetings_482257-117710.jpg"
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
@@ -193,20 +93,8 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
negativeCard={{
|
||||
items: [
|
||||
"Design intérieur",
|
||||
"Rénovation complète",
|
||||
"Aménagement d’espace",
|
||||
],
|
||||
}}
|
||||
positiveCard={{
|
||||
items: [
|
||||
"Transformation de loft",
|
||||
"Gestion de projet globale",
|
||||
"Design mobilier sur-mesure",
|
||||
],
|
||||
}}
|
||||
negativeCard={{ items: ["Design intérieur", "Rénovation complète", "Aménagement d’espace"] }}
|
||||
positiveCard={{ items: ["Transformation de loft", "Gestion de projet globale", "Design mobilier sur-mesure"] }}
|
||||
title="Nos Services"
|
||||
description="Nous accompagnons les particuliers et professionnels dans la transformation durable et esthétique de leurs espaces de vie."
|
||||
/>
|
||||
@@ -216,44 +104,15 @@ export default function LandingPage() {
|
||||
<ProductCardOne
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Loft Saint-Jean",
|
||||
price: "Rénovation",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-daily-activities-minimal-decorated-room_23-2150407613.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Appartement Presqu'île",
|
||||
price: "Aménagement",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-view-open-black-kitchen-island-drawer-minimal-storage_169016-71131.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Maison Croix-Rousse",
|
||||
price: "Transformation",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-using-laptop-minimal-decorated-room_23-2150407611.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Penthouse Lyon 6",
|
||||
price: "Luxe",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/amazing-view-downtown-building-roof-with-water-tank-it_181624-19098.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Studio Contemporain",
|
||||
price: "Design",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/trendy-coffee-shop-city_53876-14311.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Bureau Particulier",
|
||||
price: "Agencement",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-luxury-sweet-pastel-pink-tone-wall-floor-tile-glass-seamless-pattern-mosaic-background-texture-furniture-material_1258-72226.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Loft Saint-Jean", price: "Rénovation", imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-daily-activities-minimal-decorated-room_23-2150407613.jpg" },
|
||||
{ id: "p2", name: "Appartement Presqu'île", price: "Aménagement", imageSrc: "http://img.b2bpic.net/free-photo/close-view-open-black-kitchen-island-drawer-minimal-storage_169016-71131.jpg" },
|
||||
{ id: "p3", name: "Maison Croix-Rousse", price: "Transformation", imageSrc: "http://img.b2bpic.net/free-photo/woman-using-laptop-minimal-decorated-room_23-2150407611.jpg" },
|
||||
{ id: "p4", name: "Penthouse Lyon 6", price: "Luxe", imageSrc: "http://img.b2bpic.net/free-photo/amazing-view-downtown-building-roof-with-water-tank-it_181624-19098.jpg" },
|
||||
{ id: "p5", name: "Studio Contemporain", price: "Design", imageSrc: "http://img.b2bpic.net/free-photo/trendy-coffee-shop-city_53876-14311.jpg" },
|
||||
{ id: "p6", name: "Bureau Particulier", price: "Agencement", imageSrc: "http://img.b2bpic.net/free-photo/abstract-luxury-sweet-pastel-pink-tone-wall-floor-tile-glass-seamless-pattern-mosaic-background-texture-furniture-material_1258-72226.jpg" },
|
||||
]}
|
||||
title="Nos Réalisations"
|
||||
description="Découvrez nos récents projets de transformation et rénovation à Lyon et ses environs."
|
||||
@@ -266,21 +125,9 @@ export default function LandingPage() {
|
||||
title="Notre Impact"
|
||||
tag="Expertise"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "15+",
|
||||
description: "Années d'expérience",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "200+",
|
||||
description: "Projets finalisés",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "100%",
|
||||
description: "Clients satisfaits",
|
||||
},
|
||||
{ id: "m1", value: "15+", description: "Années d'expérience" },
|
||||
{ id: "m2", value: "200+", description: "Projets finalisés" },
|
||||
{ id: "m3", value: "100%", description: "Clients satisfaits" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -293,26 +140,11 @@ export default function LandingPage() {
|
||||
rating={5}
|
||||
author="Claire et Thomas B."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-business-woman-portrait_23-2149280717.jpg",
|
||||
alt: "Client 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/business-decisions-can-be-very-difficult_329181-15200.jpg",
|
||||
alt: "Client 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/businesswoman_23-2148103956.jpg",
|
||||
alt: "Client 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/joyful-colleagues-laughing-work_74855-4314.jpg",
|
||||
alt: "Client 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/mid-aged-couple-love-home_23-2147986288.jpg",
|
||||
alt: "Client 5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/beautiful-business-woman-portrait_23-2149280717.jpg", alt: "Client 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/business-decisions-can-be-very-difficult_329181-15200.jpg", alt: "Client 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/businesswoman_23-2148103956.jpg", alt: "Client 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/joyful-colleagues-laughing-work_74855-4314.jpg", alt: "Client 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/mid-aged-couple-love-home_23-2147986288.jpg", alt: "Client 5" },
|
||||
]}
|
||||
ratingAnimation="blur-reveal"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -322,9 +154,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Contact"
|
||||
title="Démarrer votre projet"
|
||||
description="Prêt à transformer votre intérieur ? Contactez-nous pour discuter de vos besoins. +33 6 86 69 78 65 ou contact@regislannoy-architecture.fr"
|
||||
@@ -338,37 +168,17 @@ export default function LandingPage() {
|
||||
logoText="Régis Lannoy"
|
||||
columns={[
|
||||
{
|
||||
title: "Régis Lannoy",
|
||||
items: [
|
||||
{
|
||||
label: "À Propos",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Nos Services",
|
||||
href: "#services",
|
||||
},
|
||||
{
|
||||
label: "Portfolio",
|
||||
href: "#portfolio",
|
||||
},
|
||||
title: "Régis Lannoy", items: [
|
||||
{ label: "À Propos", href: "#about" },
|
||||
{ label: "Nos Services", href: "#services" },
|
||||
{ label: "Portfolio", href: "#portfolio" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "43 Quai Saint-Vincent, 69001 Lyon",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
label: "+33 6 86 69 78 65",
|
||||
href: "tel:+33686697865",
|
||||
},
|
||||
{
|
||||
label: "contact@regislannoy-architecture.fr",
|
||||
href: "mailto:contact@regislannoy-architecture.fr",
|
||||
},
|
||||
title: "Contact", items: [
|
||||
{ label: "43 Quai Saint-Vincent, 69001 Lyon", href: "#contact" },
|
||||
{ label: "+33 6 86 69 78 65", href: "tel:+33686697865" },
|
||||
{ label: "contact@regislannoy-architecture.fr", href: "mailto:contact@regislannoy-architecture.fr" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user