diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 5858a90..918e66c 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -90,11 +90,11 @@ export default function AboutPage() { background={{ variant: "plain" }} mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/long-shot-men-working-roof_23-2149343678.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/long-shot-men-working-roof_23-2149343678.jpg?_wi=3", imageAlt: "Équipe professionnelle sur un chantier", }, { - imageSrc: "http://img.b2bpic.net/free-photo/unfinished-brick-structure-with-view-lush-greenery_632498-60860.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/unfinished-brick-structure-with-view-lush-greenery_632498-60860.jpg?_wi=3", imageAlt: "Construction de qualité en cours", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0f7096a..7184251 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 { DM_Sans } 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 { DM_Sans } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Webild Construction | Entreprise de Construction en Belgique", + description: "Découvrez Webild Construction, votre partenaire de confiance pour vos projets de construction et rénovation en Belgique. Services professionnels depuis 20 ans.", + keywords: "construction belgique, rénovation maison, entreprise construction, maçonnerie belgique, terrassement, toiture", + metadataBase: new URL("https://webild-construction.be"), + alternates: { + canonical: "https://webild-construction.be", + }, + openGraph: { + title: "Webild Construction - Travail Sérieux et Qualité", + description: "Entreprise de construction professionnelle en Belgique. Rénovation, construction neuve, maçonnerie et terrasse.", + url: "https://webild-construction.be", + siteName: "Webild Construction", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/young-man-civil-engineer-safety-hat_185193-108529.jpg", + alt: "Webild Construction - Chantier professionnel", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Webild Construction | Construction en Belgique", + description: "Votre entreprise de construction et rénovation de confiance en Belgique", + images: ["http://img.b2bpic.net/free-photo/young-man-civil-engineer-safety-hat_185193-108529.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +57,9 @@ export default function RootLayout({ return ( - + {children}