diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 2f5fa0b..cd0eabc 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -87,7 +87,7 @@ export default function AboutPage() { title: "Taux de satisfaction clients", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/women-working-greenhouse-with-flowerpots_1157-30888.jpg" + imageSrc="http://img.b2bpic.net/free-photo/women-working-greenhouse-with-flowerpots_1157-30888.jpg?_wi=2" imageAlt="landscape architects team garden planning" useInvertedBackground={false} mediaAnimation="blur-reveal" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32671a1..7262290 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,33 +1,65 @@ 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"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Paysagiste à Paris – Création de jardins et terrasses", + description: "Création, aménagement et rénovation de jardins, terrasses et cours à Paris. Expertise haut de gamme, devis gratuit, 500+ projets réalisés.", + keywords: "paysagiste Paris, jardin Paris, terrasse, création jardin, paysagisme Île-de-France", + metadataBase: new URL("https://paysagistesparis.fr"), + alternates: { + canonical: "https://paysagistesparis.fr", + }, + openGraph: { + title: "Paysagiste Paris – Transformez votre jardin", + description: "Créez votre jardin de rêve avec notre agence de paysagisme haut de gamme basée à Paris.", + type: "website", + siteName: "Paysagistes Paris", + locale: "fr_FR", + }, + twitter: { + card: "summary_large_image", + title: "Paysagiste Paris", + description: "Services de paysagisme haut de gamme", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( - + - + {children}