Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-19 17:04:06 +00:00
4 changed files with 76 additions and 41 deletions

View File

@@ -65,7 +65,7 @@ export default function AboutPage() {
description="Fuite d'eau, panne chauffe-eau, toilettes bouchées ? Nous intervenons dans l'heure suivant votre appel."
subdescription="Notre équipe d'artisans locaux réactifs résout vos problèmes plomberie rapidement et efficacement. Disponible 7 jours sur 7, jour et nuit."
icon={Zap}
imageSrc="http://img.b2bpic.net/free-photo/young-builder-man-construction-uniform-cap-holding-smartphone-lookingat-screen-connecting-with-someone-waving-with-hand-greeting_141793-28505.jpg"
imageSrc="http://img.b2bpic.net/free-photo/young-builder-man-construction-uniform-cap-holding-smartphone-lookingat-screen-connecting-with-someone-waving-with-hand-greeting_141793-28505.jpg?_wi=2"
imageAlt="Intervention d'urgence plombier"
mediaAnimation="slide-up"
useInvertedBackground={false}
@@ -87,10 +87,10 @@ export default function AboutPage() {
title: "Intervention ultra-rapide",
description: "Moins de 1h pour les urgences. Artisan local basé à Nantes.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/young-fitness-girl-black-sportswear-with-headband-holding-wall-clock-smiling-confident-clenching-fist-standing-white-wall_141793-56031.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-fitness-girl-black-sportswear-with-headband-holding-wall-clock-smiling-confident-clenching-fist-standing-white-wall_141793-56031.jpg?_wi=3",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/top-view-magnifying-glass-map_23-2148315645.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-magnifying-glass-map_23-2148315645.jpg?_wi=3",
},
},
{
@@ -98,10 +98,10 @@ export default function AboutPage() {
title: "Avis clients excellents",
description: "19 avis 5/5 sur Google. Clients satisfaits et fidèles depuis des années.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-vector/creative-testimonial-speech-bubble-shape_23-2147945511.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/creative-testimonial-speech-bubble-shape_23-2147945511.jpg?_wi=3",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-with-denim-jacket-with-letter-l_1187-1177.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-with-denim-jacket-with-letter-l_1187-1177.jpg?_wi=3",
},
},
{
@@ -109,10 +109,10 @@ export default function AboutPage() {
title: "Devis transparent & gratuit",
description: "Pas de surprise - prix clairs et détaillés avant intervention.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-geometric-real-estate-invoice_23-2149170635.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-geometric-real-estate-invoice_23-2149170635.jpg?_wi=3",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/elegant-glasses-arrangement-closeup_23-2148848655.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/elegant-glasses-arrangement-closeup_23-2148848655.jpg?_wi=3",
},
},
]}

View File

@@ -1,28 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Open_Sans } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Plombier DMS - Intervention Rapide 24h/24 à Nantes",
description: "Plombier de confiance à Nantes. Intervention en moins de 1h, 24h/24. Devis gratuit, avis 5/5. Installation, réparation, dépannage urgence.",
keywords: "plombier Nantes, plombier urgence, dépannage plomberie, installation plomberie, réparation fuite, chauffe-eau, 24h24",
metadataBase: new URL("https://plombier-dms.fr"),
alternates: {
canonical: "https://plombier-dms.fr",
},
openGraph: {
title: "Plombier DMS - Intervention Rapide 24h/24 à Nantes",
description: "Plombier local de confiance. Intervention en moins de 1h. Devis gratuit, avis clients 5/5.",
url: "https://plombier-dms.fr",
siteName: "Plombier DMS Nantes",
images: [
{
url: "http://img.b2bpic.net/free-photo/sanitary-technician-working-with-wrench-kitchen_23-2147772255.jpg",
alt: "Plombier DMS en intervention",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Plombier DMS - Intervention Rapide à Nantes",
description: "Plombier local 24h/24. Devis gratuit. Avis 5/5.",
images: ["http://img.b2bpic.net/free-photo/sanitary-technician-working-with-wrench-kitchen_23-2147772255.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -31,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -123,42 +123,42 @@ export default function HomePage() {
id: "installation",
name: "Installation",
price: "Sur devis",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721541.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721541.jpg?_wi=1",
imageAlt: "Installation sanitaires et chauffe-eau",
},
{
id: "repairs",
name: "Réparations",
price: "À partir de 80€",
imageSrc: "http://img.b2bpic.net/free-photo/artisan-work-madhu-vana_181624-58285.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/artisan-work-madhu-vana_181624-58285.jpg?_wi=1",
imageAlt: "Réparation fuites et tuyauterie",
},
{
id: "emergency",
name: "Dépannage urgence",
price: "24h/24",
imageSrc: "http://img.b2bpic.net/free-photo/delivery-man-blue-t-shirt-cap-holding-clock-with-hand-mouth-looking-excited_176474-19963.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delivery-man-blue-t-shirt-cap-holding-clock-with-hand-mouth-looking-excited_176474-19963.jpg?_wi=1",
imageAlt: "Dépannage d'urgence plomberie",
},
{
id: "external",
name: "Plomberie extérieure",
price: "Sur devis",
imageSrc: "http://img.b2bpic.net/free-photo/old-fire-hydrant-street_23-2148184334.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/old-fire-hydrant-street_23-2148184334.jpg?_wi=1",
imageAlt: "Plomberie extérieure et réseau",
},
{
id: "heating",
name: "Chauffe-eau & chauffage",
price: "Sur devis",
imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990696.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990696.jpg?_wi=1",
imageAlt: "Installation et réparation chauffe-eau",
},
{
id: "maintenance",
name: "Entretien préventif",
price: "Tarif réduit",
imageSrc: "http://img.b2bpic.net/free-photo/shock-wave-therapy-device-with-male-doctor-hands-rubber-gloves_169016-40119.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/shock-wave-therapy-device-with-male-doctor-hands-rubber-gloves_169016-40119.jpg?_wi=1",
imageAlt: "Entretien et maintenance plomberie",
},
]}
@@ -178,7 +178,7 @@ export default function HomePage() {
description="Fuite d'eau, panne chauffe-eau, toilettes bouchées ? Nous intervenons dans l'heure suivant votre appel."
subdescription="Notre équipe d'artisans locaux réactifs résout vos problèmes plomberie rapidement et efficacement. Disponible 7 jours sur 7, jour et nuit."
icon={Zap}
imageSrc="http://img.b2bpic.net/free-photo/young-builder-man-construction-uniform-cap-holding-smartphone-lookingat-screen-connecting-with-someone-waving-with-hand-greeting_141793-28505.jpg"
imageSrc="http://img.b2bpic.net/free-photo/young-builder-man-construction-uniform-cap-holding-smartphone-lookingat-screen-connecting-with-someone-waving-with-hand-greeting_141793-28505.jpg?_wi=1"
imageAlt="Intervention d'urgence plombier"
mediaAnimation="slide-up"
useInvertedBackground={false}
@@ -198,10 +198,10 @@ export default function HomePage() {
title: "Intervention ultra-rapide",
description: "Moins de 1h pour les urgences. Artisan local basé à Nantes.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/young-fitness-girl-black-sportswear-with-headband-holding-wall-clock-smiling-confident-clenching-fist-standing-white-wall_141793-56031.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-fitness-girl-black-sportswear-with-headband-holding-wall-clock-smiling-confident-clenching-fist-standing-white-wall_141793-56031.jpg?_wi=1",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/top-view-magnifying-glass-map_23-2148315645.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-magnifying-glass-map_23-2148315645.jpg?_wi=1",
},
},
{
@@ -209,10 +209,10 @@ export default function HomePage() {
title: "Avis client excellents",
description: "19 avis 5/5 sur Google. Clients satisfaits et fidèles depuis des années.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-vector/creative-testimonial-speech-bubble-shape_23-2147945511.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/creative-testimonial-speech-bubble-shape_23-2147945511.jpg?_wi=1",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-with-denim-jacket-with-letter-l_1187-1177.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-with-denim-jacket-with-letter-l_1187-1177.jpg?_wi=1",
},
},
{
@@ -220,10 +220,10 @@ export default function HomePage() {
title: "Devis transparent & gratuit",
description: "Pas de surprise - prix clairs et détaillés avant intervention.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-geometric-real-estate-invoice_23-2149170635.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-geometric-real-estate-invoice_23-2149170635.jpg?_wi=1",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/elegant-glasses-arrangement-closeup_23-2148848655.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/elegant-glasses-arrangement-closeup_23-2148848655.jpg?_wi=1",
},
},
]}

View File

@@ -92,42 +92,42 @@ export default function ServicesPage() {
id: "installation",
name: "Installation Complète",
price: "Sur devis",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721541.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721541.jpg?_wi=2",
imageAlt: "Installation sanitaires et chauffe-eau",
},
{
id: "repairs",
name: "Réparations d'Urgence",
price: "À partir de 80€",
imageSrc: "http://img.b2bpic.net/free-photo/artisan-work-madhu-vana_181624-58285.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/artisan-work-madhu-vana_181624-58285.jpg?_wi=2",
imageAlt: "Réparation fuites et tuyauterie",
},
{
id: "emergency",
name: "Dépannage 24h/24",
price: "24h/24",
imageSrc: "http://img.b2bpic.net/free-photo/delivery-man-blue-t-shirt-cap-holding-clock-with-hand-mouth-looking-excited_176474-19963.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delivery-man-blue-t-shirt-cap-holding-clock-with-hand-mouth-looking-excited_176474-19963.jpg?_wi=2",
imageAlt: "Dépannage d'urgence plomberie",
},
{
id: "external",
name: "Plomberie Extérieure",
price: "Sur devis",
imageSrc: "http://img.b2bpic.net/free-photo/old-fire-hydrant-street_23-2148184334.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/old-fire-hydrant-street_23-2148184334.jpg?_wi=2",
imageAlt: "Plomberie extérieure et réseau",
},
{
id: "heating",
name: "Chauffage & Chauffe-eau",
price: "Sur devis",
imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990696.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990696.jpg?_wi=2",
imageAlt: "Installation et réparation chauffe-eau",
},
{
id: "maintenance",
name: "Entretien Préventif",
price: "Tarif réduit",
imageSrc: "http://img.b2bpic.net/free-photo/shock-wave-therapy-device-with-male-doctor-hands-rubber-gloves_169016-40119.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/shock-wave-therapy-device-with-male-doctor-hands-rubber-gloves_169016-40119.jpg?_wi=2",
imageAlt: "Entretien et maintenance plomberie",
},
]}
@@ -151,10 +151,10 @@ export default function ServicesPage() {
title: "Intervention Rapide",
description: "Délai réduit à moins d'une heure pour les urgences à Nantes.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/young-fitness-girl-black-sportswear-with-headband-holding-wall-clock-smiling-confident-clenching-fist-standing-white-wall_141793-56031.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-fitness-girl-black-sportswear-with-headband-holding-wall-clock-smiling-confident-clenching-fist-standing-white-wall_141793-56031.jpg?_wi=2",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/top-view-magnifying-glass-map_23-2148315645.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-magnifying-glass-map_23-2148315645.jpg?_wi=2",
},
},
{
@@ -162,10 +162,10 @@ export default function ServicesPage() {
title: "Expertise Reconnue",
description: "Artisan certifié avec 19 avis 5/5 sur Google et clients fidèles.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-vector/creative-testimonial-speech-bubble-shape_23-2147945511.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/creative-testimonial-speech-bubble-shape_23-2147945511.jpg?_wi=2",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-with-denim-jacket-with-letter-l_1187-1177.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-with-denim-jacket-with-letter-l_1187-1177.jpg?_wi=2",
},
},
{
@@ -173,10 +173,10 @@ export default function ServicesPage() {
title: "Tarification Transparente",
description: "Devis gratuit et détaillé - pas de frais cachés ni surprises.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-geometric-real-estate-invoice_23-2149170635.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-geometric-real-estate-invoice_23-2149170635.jpg?_wi=2",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/elegant-glasses-arrangement-closeup_23-2148848655.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/elegant-glasses-arrangement-closeup_23-2148848655.jpg?_wi=2",
},
},
]}