diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 9c4cbd3..276b3b0 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -112,7 +112,7 @@ export default function AboutPage() { icon: Star, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/women-construction_23-2151940458.jpg" + imageSrc="http://img.b2bpic.net/free-photo/women-construction_23-2151940458.jpg?_wi=2" imageAlt="Équipe A2P Aménagement Extérieur en action" mediaAnimation="slide-up" imagePosition="right" @@ -131,25 +131,25 @@ export default function AboutPage() { id: 1, title: "Terrassement & Préparation", description: "Préparation de terrain pour maison, piscine, extension. Excavation professionnelle et stabilisation.", - imageSrc: "http://img.b2bpic.net/free-photo/construction-site-with-old-pipes-dug-out_23-2148254078.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/construction-site-with-old-pipes-dug-out_23-2148254078.jpg?_wi=3", }, { id: 2, title: "Béton Désactivé", description: "Idéal pour allées, terrasses et accès maison. Finitions esthétiques et durables.", - imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-13737.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-13737.jpg?_wi=3", }, { id: 3, title: "Terrasses Béton", description: "Création de terrasses robustes et élégantes pour valoriser votre extérieur.", - imageSrc: "http://img.b2bpic.net/free-photo/teenager-with-skateboard-skatepark_23-2148758469.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/teenager-with-skateboard-skatepark_23-2148758469.jpg?_wi=3", }, { id: 4, title: "Allées & Accès", description: "Pavés, bordures, stabilisation. Chemins d'accès sécurisés et fonctionnels.", - imageSrc: "http://img.b2bpic.net/free-photo/full-length-portrait-stylish-smiling-woman-walking-exotic-street-near-hotel-sunny-hot-day-spending-her-vacation-los-angeles_273443-2714.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/full-length-portrait-stylish-smiling-woman-walking-exotic-street-near-hotel-sunny-hot-day-spending-her-vacation-los-angeles_273443-2714.jpg?_wi=3", }, ]} textboxLayout="default" diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index d3bc77f..4bf1979 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -99,7 +99,7 @@ export default function ContactPage() { rows: 6, required: true, }} - imageSrc="http://img.b2bpic.net/free-photo/excavator-digging-ground-day-light_23-2149194765.jpg" + imageSrc="http://img.b2bpic.net/free-photo/excavator-digging-ground-day-light_23-2149194765.jpg?_wi=3" imageAlt="Équipements chantier pelle excavatrice machines" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index edb6b42..be4d15d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,54 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Montserrat } from "next/font/google"; import { Inter } 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 { Montserrat } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "A2P Aménagement Extérieur - Terrassement Annecy", + description: "Expert en terrassement, aménagement extérieur et maçonnerie paysagère en Haute-Savoie. Réalisations de qualité, devis gratuit.", + keywords: "terrassement Annecy, aménagement extérieur Haute-Savoie, béton désactivé, terrasse béton, maçonnerie paysagère", + metadataBase: new URL("https://a2p-amenagement.fr"), + alternates: { + canonical: "https://a2p-amenagement.fr", + }, + openGraph: { + title: "A2P Aménagement Extérieur - Votre Expert Local", + description: "Terrassement, aménagement extérieur et maçonnerie paysagère de qualité en Haute-Savoie", + url: "https://a2p-amenagement.fr", + siteName: "A2P Aménagement Extérieur", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/hiker-path-forest_23-2147665052.jpg", + alt: "A2P Aménagement Extérieur - Chantiers professionnels", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "A2P Aménagement Extérieur", + description: "Experts en terrassement et aménagement extérieur Annecy", + images: ["http://img.b2bpic.net/free-photo/hiker-path-forest_23-2147665052.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +57,9 @@ export default function RootLayout({ return ( - + {children}