Update src/app/page.tsx
This commit is contained in:
277
src/app/page.tsx
277
src/app/page.tsx
@@ -16,199 +16,106 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
},
|
||||
{
|
||||
name: "Pourquoi nous",
|
||||
id: "why-us",
|
||||
},
|
||||
{
|
||||
name: "Réalisations",
|
||||
id: "realisations",
|
||||
},
|
||||
{
|
||||
name: "Avis",
|
||||
id: "avis",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="Douieb Plomberie Services"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Pourquoi nous", id: "why-us" },
|
||||
{ name: "Réalisations", id: "realisations" },
|
||||
{ name: "Avis", id: "avis" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
brandName="Douieb Plomberie Services"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
logoText="Douieb Plomberie Services"
|
||||
description="Votre plombier de confiance à Limoges. Intervention rapide, devis gratuit, disponible 24h/24 et 7j/7."
|
||||
buttons={[
|
||||
{
|
||||
text: "Appeler maintenant (06 51 74 55 39)",
|
||||
href: "tel:0651745539",
|
||||
},
|
||||
{
|
||||
text: "Demander un devis",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-still-life-assortment-pvc_23-2149062953.jpg?_wi=1"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
background={{ variant: "gradient-bars" }}
|
||||
logoText="Douieb Plomberie Services"
|
||||
description="Votre plombier de confiance à Limoges. Intervention rapide, devis gratuit, disponible 24h/24 et 7j/7."
|
||||
buttons={[
|
||||
{ text: "Appeler maintenant (06 51 74 55 39)", href: "tel:0651745539" },
|
||||
{ text: "Demander un devis", href: "#contact" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-still-life-assortment-pvc_23-2149062953.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardTwentyOne
|
||||
useInvertedBackground={true}
|
||||
title="Nos prestations"
|
||||
description="Une gamme complète de services de plomberie pour particuliers et professionnels à Limoges."
|
||||
accordionItems={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Dépannage urgent",
|
||||
content: "Intervention le jour même, soir et week-end.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Détection de fuite",
|
||||
content: "Localisation précise, sans démolition inutile.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Débouchage",
|
||||
content: "Canalisations, WC, évier — résultat garanti.",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Installation sanitaire",
|
||||
content: "Pose complète, travail soigné et propre.",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Chauffe-eau & chaudière",
|
||||
content: "Remplacement et entretien toutes marques.",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
title: "Rénovation salle de bain",
|
||||
content: "Du projet à la réalisation clé en main.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/colorful-bike-pieces-arrangement_23-2148932614.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardTwentyOne
|
||||
useInvertedBackground={true}
|
||||
title="Nos prestations"
|
||||
description="Une gamme complète de services de plomberie pour particuliers et professionnels à Limoges."
|
||||
accordionItems={[
|
||||
{ id: "1", title: "Dépannage urgent", content: "Intervention le jour même, soir et week-end." },
|
||||
{ id: "2", title: "Détection de fuite", content: "Localisation précise, sans démolition inutile." },
|
||||
{ id: "3", title: "Débouchage", content: "Canalisations, WC, évier — résultat garanti." },
|
||||
{ id: "4", title: "Installation sanitaire", content: "Pose complète, travail soigné et propre." },
|
||||
{ id: "5", title: "Chauffe-eau & chaudière", content: "Remplacement et entretien toutes marques." },
|
||||
{ id: "6", title: "Rénovation salle de bain", content: "Du projet à la réalisation clé en main." }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/colorful-bike-pieces-arrangement_23-2148932614.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="why-us" data-section="why-us">
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Pourquoi choisir Douieb Plomberie ?"
|
||||
description="Nous mettons notre expertise au service de vos besoins en plomberie avec réactivité et professionnalisme. Basés à Limoges, nous intervenons rapidement pour tous vos travaux et urgences avec un souci permanent de qualité."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-servant-cleaning-kitchen_23-2149530813.jpg"
|
||||
/>
|
||||
</div>
|
||||
<div id="why-us" data-section="why-us">
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Pourquoi choisir Douieb Plomberie ?"
|
||||
description="Nous mettons notre expertise au service de vos besoins en plomberie avec réactivité et professionnalisme. Basés à Limoges, nous intervenons rapidement pour tous vos travaux et urgences avec un souci permanent de qualité."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-servant-cleaning-kitchen_23-2149530813.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="avis" data-section="avis">
|
||||
<TestimonialCardFive
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Mohamed H.",
|
||||
date: "Nov 2021",
|
||||
title: "Client satisfait",
|
||||
quote: "Personne très réactive. Venu le soir même me dépanner à plus de 22h ! Mon chauffe-eau était sur le point d'exploser...",
|
||||
tag: "5 étoiles",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721550.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "J-C L.",
|
||||
date: "Oct 2025",
|
||||
title: "Excellent artisan",
|
||||
quote: "Plombier efficace, attentionné et très professionnel. Un rapport qualité-prix plus que satisfaisant.",
|
||||
tag: "5 étoiles",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-senior-man-with-digital-tablet-laptop-glass-reflective-desk_23-2147935568.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Rémi R.",
|
||||
date: "Mar 2025",
|
||||
title: "Service de qualité",
|
||||
quote: "J'ai appelé le monsieur à 21h20, à 21h40 il était chez ma belle-mère. Le travail a été fait nickel.",
|
||||
tag: "5 étoiles",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/workers-having-little-chat-while-having-cup-coffee_329181-15689.jpg",
|
||||
},
|
||||
]}
|
||||
title="Ce que disent nos clients"
|
||||
description="Plus de 33 clients nous font confiance à Limoges."
|
||||
/>
|
||||
</div>
|
||||
<div id="avis" data-section="avis">
|
||||
<TestimonialCardFive
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Mohamed H.", date: "Nov 2021", title: "Client satisfait", quote: "Personne très réactive. Venu le soir même me dépanner à plus de 22h ! Mon chauffe-eau était sur le point d'exploser...", tag: "5 étoiles", avatarSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721550.jpg" },
|
||||
{ id: "2", name: "J-C L.", date: "Oct 2025", title: "Excellent artisan", quote: "Plombier efficace, attentionné et très professionnel. Un rapport qualité-prix plus que satisfaisant.", tag: "5 étoiles", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-senior-man-with-digital-tablet-laptop-glass-reflective-desk_23-2147935568.jpg" },
|
||||
{ id: "3", name: "Rémi R.", date: "Mar 2025", title: "Service de qualité", quote: "J'ai appelé le monsieur à 21h20, à 21h40 il était chez ma belle-mère. Le travail a été fait nickel.", tag: "5 étoiles", avatarSrc: "http://img.b2bpic.net/free-photo/workers-having-little-chat-while-having-cup-coffee_329181-15689.jpg" }
|
||||
]}
|
||||
title="Ce que disent nos clients"
|
||||
description="Plus de 33 clients nous font confiance à Limoges."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
text="Contactez-nous pour toute demande de dépannage ou de devis gratuit. Intervention rapide 24h/24, 7j/7 sur Limoges et 30km alentours. Tél : 06 51 74 55 39"
|
||||
buttons={[
|
||||
{
|
||||
text: "Appeler maintenant",
|
||||
href: "tel:0651745539",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
text="Contactez-nous pour toute demande de dépannage ou de devis gratuit. Intervention rapide 24h/24, 7j/7 sur Limoges et 30km alentours. Tél : 06 51 74 55 39"
|
||||
buttons={[
|
||||
{ text: "Appeler maintenant", href: "tel:0651745539" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-still-life-assortment-pvc_23-2149062953.jpg?_wi=2"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Dépannage",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Installation",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Informations",
|
||||
items: [
|
||||
{
|
||||
label: "Mentions Légales",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Confidentialité",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Douieb Plomberie Services"
|
||||
copyrightText="© 2025 Douieb Plomberie Services. Tous droits réservés."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-still-life-assortment-pvc_23-2149062953.jpg"
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "Dépannage", href: "#" }, { label: "Installation", href: "#" }] },
|
||||
{ title: "Informations", items: [{ label: "Mentions Légales", href: "#" }, { label: "Confidentialité", href: "#" }] }
|
||||
]}
|
||||
logoText="Douieb Plomberie Services"
|
||||
copyrightText="© 2025 Douieb Plomberie Services. Tous droits réservés."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user