Merge version_1 into main #1
@@ -80,7 +80,7 @@ export default function AboutPage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cheerful-gardener-planting-seedling_329181-20597.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cheerful-gardener-planting-seedling_329181-20597.jpg?_wi=3"
|
||||
imageAlt="Équipe Carré Vert au travail"
|
||||
mediaAnimation="slide-up"
|
||||
ariaLabel="Section héro - À propos"
|
||||
@@ -111,7 +111,7 @@ export default function AboutPage() {
|
||||
author: "Notre Initiative",
|
||||
description: "Nous accompagnons des jeunes en situation de handicap pour qu'ils acquièrent des compétences et une expérience professionnelle dans le domaine du paysage et de l'horticulture.",
|
||||
tags: ["Formation", "Inclusion"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/creative-team-watching-content-pc-together_74855-9772.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/creative-team-watching-content-pc-together_74855-9772.jpg?_wi=2",
|
||||
imageAlt: "Programme de formation professionnelle",
|
||||
},
|
||||
{
|
||||
@@ -120,7 +120,7 @@ export default function AboutPage() {
|
||||
author: "Notre Engagement",
|
||||
description: "Nous utilisons des méthodes respectueuses de l'environnement, favorisant la biodiversité et la santé des écosystèmes de chaque jardin.",
|
||||
tags: ["Écologie", "Durabilité"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-alone-sustainable-greenhouse_23-2149072119.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-alone-sustainable-greenhouse_23-2149072119.jpg?_wi=2",
|
||||
imageAlt: "Pratiques écologiques durables",
|
||||
},
|
||||
{
|
||||
@@ -129,7 +129,7 @@ export default function AboutPage() {
|
||||
author: "Notre Communauté",
|
||||
description: "Carré Vert crée des opportunités d'emploi et de développement professionnel au sein de notre communauté locale, en privilégiant le talent et le potentiel.",
|
||||
tags: ["Emploi", "Communauté"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-man-driving-lawn-mower_23-2149382199.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-man-driving-lawn-mower_23-2149382199.jpg?_wi=3",
|
||||
imageAlt: "Équipe locale en action",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -79,7 +79,7 @@ export default function GalleryPage() {
|
||||
price: "Avant",
|
||||
rating: 5,
|
||||
reviewCount: "Transformation",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/kids-learnign-about-environment_23-2149176600.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/kids-learnign-about-environment_23-2149176600.jpg?_wi=2",
|
||||
imageAlt: "Jardin avant entretien",
|
||||
},
|
||||
{
|
||||
@@ -89,7 +89,7 @@ export default function GalleryPage() {
|
||||
price: "Après",
|
||||
rating: 5,
|
||||
reviewCount: "Réalisé",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening-tools-pot-near-spray-bottle_23-2147714861.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening-tools-pot-near-spray-bottle_23-2147714861.jpg?_wi=2",
|
||||
imageAlt: "Jardin après entretien professionnel",
|
||||
},
|
||||
{
|
||||
@@ -99,7 +99,7 @@ export default function GalleryPage() {
|
||||
price: "Avant",
|
||||
rating: 5,
|
||||
reviewCount: "Projet",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/many-leaves-autumn-lying-grass-poznan-poland_181624-9929.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/many-leaves-autumn-lying-grass-poznan-poland_181624-9929.jpg?_wi=2",
|
||||
imageAlt: "Espace avant transformation",
|
||||
},
|
||||
{
|
||||
@@ -109,7 +109,7 @@ export default function GalleryPage() {
|
||||
price: "Après",
|
||||
rating: 5,
|
||||
reviewCount: "Complété",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-wood-chair_1339-6126.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-wood-chair_1339-6126.jpg?_wi=2",
|
||||
imageAlt: "Espace après aménagement",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,27 +1,60 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Public_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 { Public_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 publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Carré Vert | Entretien et Aménagement de Jardins Professionnels",
|
||||
description: "Entreprise spécialisée dans l'entretien et l'aménagement d'espaces verts. Taille de haies, nettoyage de jardins, aménagement paysager avec engagement social.",
|
||||
keywords: "entretien de jardin, jardinier professionnel, taille de haies, entretien d'espaces verts, paysagiste, aménagement paysager, nettoyage jardin",
|
||||
metadataBase: new URL("https://carrevert.fr"),
|
||||
alternates: {
|
||||
canonical: "https://carrevert.fr",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Carré Vert - Entretien Professionnel de Jardins",
|
||||
description: "Votre jardin mérite l'excellence. Service professionnel, respect de la nature, engagement social.",
|
||||
url: "https://carrevert.fr",
|
||||
siteName: "Carré Vert",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/woman-working-alone-sustainable-greenhouse_23-2149072119.jpg",
|
||||
alt: "Jardin magnifiquement entretenu par Carré Vert",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Carré Vert - Entretien de Jardins Excellence",
|
||||
description: "Entretien professionnel et aménagement de vos espaces verts avec passion.",
|
||||
images: ["http://img.b2bpic.net/free-photo/woman-working-alone-sustainable-greenhouse_23-2149072119.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -31,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -89,7 +89,7 @@ export default function HomePage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-working-alone-sustainable-greenhouse_23-2149072119.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-working-alone-sustainable-greenhouse_23-2149072119.jpg?_wi=1"
|
||||
imageAlt="Jardin magnifiquement entretenu"
|
||||
mediaAnimation="slide-up"
|
||||
ariaLabel="Section héro Carré Vert"
|
||||
@@ -105,7 +105,7 @@ export default function HomePage() {
|
||||
author: "Notre Engagement",
|
||||
description: "Chaque intervention est réalisée avec rigueur et attention aux détails pour garantir un résultat impeccable.",
|
||||
tags: ["Qualité", "Professionnalisme"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-man-driving-lawn-mower_23-2149382199.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-man-driving-lawn-mower_23-2149382199.jpg?_wi=1",
|
||||
imageAlt: "Travail professionnel de taille de haies",
|
||||
},
|
||||
{
|
||||
@@ -114,7 +114,7 @@ export default function HomePage() {
|
||||
author: "Notre Standard",
|
||||
description: "Nous nettoyons complètement votre espace après chaque prestation. Aucun débris, aucun désordre.",
|
||||
tags: ["Nettoyage", "Propreté"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-collects-leaves-cleans-park_1157-27418.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-collects-leaves-cleans-park_1157-27418.jpg?_wi=1",
|
||||
imageAlt: "Jardin complètement nettoyé",
|
||||
},
|
||||
{
|
||||
@@ -123,7 +123,7 @@ export default function HomePage() {
|
||||
author: "Notre Valeur",
|
||||
description: "Nous travaillons en harmonie avec l'environnement, préservant la santé de vos plantes et de l'écosystème.",
|
||||
tags: ["Écologie", "Durabilité"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-gardener-planting-seedling_329181-20597.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-gardener-planting-seedling_329181-20597.jpg?_wi=1",
|
||||
imageAlt: "Équipe travaillant respectueusement",
|
||||
},
|
||||
{
|
||||
@@ -132,7 +132,7 @@ export default function HomePage() {
|
||||
author: "Notre Équipe",
|
||||
description: "Nos jardiniers sont formés, courtois et à l'écoute de vos besoins spécifiques.",
|
||||
tags: ["Savoir-faire", "Écoute"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-gardener-planting-seedling_329181-20597.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-gardener-planting-seedling_329181-20597.jpg?_wi=2",
|
||||
imageAlt: "Équipe professionnelle de Carré Vert",
|
||||
},
|
||||
{
|
||||
@@ -141,7 +141,7 @@ export default function HomePage() {
|
||||
author: "Notre Mission",
|
||||
description: "Nous accompagnons des jeunes en situation de handicap dans l'apprentissage des métiers du paysage.",
|
||||
tags: ["Solidarité", "Impact"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/creative-team-watching-content-pc-together_74855-9772.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/creative-team-watching-content-pc-together_74855-9772.jpg?_wi=1",
|
||||
imageAlt: "Programme d'inclusion professionnelle",
|
||||
},
|
||||
]}
|
||||
@@ -180,7 +180,7 @@ export default function HomePage() {
|
||||
author: "Entretien",
|
||||
description: "Taille précise et adaptée pour garder des haies harmonieuses et en bonne santé. Travail effectué avec professionnalisme et respect des végétaux.",
|
||||
tags: ["Taille", "Arbustes"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-man-driving-lawn-mower_23-2149382199.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-man-driving-lawn-mower_23-2149382199.jpg?_wi=2",
|
||||
imageAlt: "Taille professionnelle de haies",
|
||||
},
|
||||
{
|
||||
@@ -189,7 +189,7 @@ export default function HomePage() {
|
||||
author: "Maintenance",
|
||||
description: "Tonte de pelouse, nettoyage des espaces verts, ramassage des feuilles et entretien saisonnier pour garder votre jardin en excellent état.",
|
||||
tags: ["Tonte", "Nettoyage"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-collects-leaves-cleans-park_1157-27418.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-collects-leaves-cleans-park_1157-27418.jpg?_wi=2",
|
||||
imageAlt: "Entretien régulier du jardin",
|
||||
},
|
||||
{
|
||||
@@ -198,7 +198,7 @@ export default function HomePage() {
|
||||
author: "Restauration",
|
||||
description: "Remise en état de jardins après l'hiver ou un manque d'entretien. Votre jardin retrouve propreté, structure et vitalité.",
|
||||
tags: ["Nettoyage", "Restauration"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-collects-leaves-cleans-park_1157-27418.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-collects-leaves-cleans-park_1157-27418.jpg?_wi=3",
|
||||
imageAlt: "Jardin rénové et nettoyé",
|
||||
},
|
||||
{
|
||||
@@ -207,7 +207,7 @@ export default function HomePage() {
|
||||
author: "Création",
|
||||
description: "Création et transformation d'espaces verts : plantations, organisation des espaces, amélioration esthétique. Nous réalisons vos projets.",
|
||||
tags: ["Aménagement", "Design"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/greenhouse-owner-presenting-flowers-options-potential-customer-retailer-using-laptop_158595-7051.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/greenhouse-owner-presenting-flowers-options-potential-customer-retailer-using-laptop_158595-7051.jpg?_wi=1",
|
||||
imageAlt: "Aménagement paysager professionnel",
|
||||
},
|
||||
]}
|
||||
@@ -271,7 +271,7 @@ export default function HomePage() {
|
||||
price: "Avant",
|
||||
rating: 5,
|
||||
reviewCount: "Transformation",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/kids-learnign-about-environment_23-2149176600.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/kids-learnign-about-environment_23-2149176600.jpg?_wi=1",
|
||||
imageAlt: "Jardin avant entretien",
|
||||
},
|
||||
{
|
||||
@@ -281,7 +281,7 @@ export default function HomePage() {
|
||||
price: "Après",
|
||||
rating: 5,
|
||||
reviewCount: "Réalisé",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening-tools-pot-near-spray-bottle_23-2147714861.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening-tools-pot-near-spray-bottle_23-2147714861.jpg?_wi=1",
|
||||
imageAlt: "Jardin après entretien professionnel",
|
||||
},
|
||||
{
|
||||
@@ -291,7 +291,7 @@ export default function HomePage() {
|
||||
price: "Avant",
|
||||
rating: 5,
|
||||
reviewCount: "Projet",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/many-leaves-autumn-lying-grass-poznan-poland_181624-9929.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/many-leaves-autumn-lying-grass-poznan-poland_181624-9929.jpg?_wi=1",
|
||||
imageAlt: "Espace avant transformation",
|
||||
},
|
||||
{
|
||||
@@ -301,7 +301,7 @@ export default function HomePage() {
|
||||
price: "Après",
|
||||
rating: 5,
|
||||
reviewCount: "Complété",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-wood-chair_1339-6126.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-wood-chair_1339-6126.jpg?_wi=1",
|
||||
imageAlt: "Espace après aménagement",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -79,7 +79,7 @@ export default function ServicesPage() {
|
||||
author: "Entretien",
|
||||
description: "Taille précise et adaptée pour garder des haies harmonieuses et en bonne santé. Travail effectué avec professionnalisme et respect des végétaux.",
|
||||
tags: ["Taille", "Arbustes"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-man-driving-lawn-mower_23-2149382199.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-man-driving-lawn-mower_23-2149382199.jpg?_wi=4",
|
||||
imageAlt: "Taille professionnelle de haies",
|
||||
},
|
||||
{
|
||||
@@ -88,7 +88,7 @@ export default function ServicesPage() {
|
||||
author: "Maintenance",
|
||||
description: "Tonte de pelouse, nettoyage des espaces verts, ramassage des feuilles et entretien saisonnier pour garder votre jardin en excellent état.",
|
||||
tags: ["Tonte", "Nettoyage"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-collects-leaves-cleans-park_1157-27418.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-collects-leaves-cleans-park_1157-27418.jpg?_wi=4",
|
||||
imageAlt: "Entretien régulier du jardin",
|
||||
},
|
||||
{
|
||||
@@ -97,7 +97,7 @@ export default function ServicesPage() {
|
||||
author: "Restauration",
|
||||
description: "Remise en état de jardins après l'hiver ou un manque d'entretien. Votre jardin retrouve propreté, structure et vitalité.",
|
||||
tags: ["Nettoyage", "Restauration"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-collects-leaves-cleans-park_1157-27418.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-collects-leaves-cleans-park_1157-27418.jpg?_wi=5",
|
||||
imageAlt: "Jardin rénové et nettoyé",
|
||||
},
|
||||
{
|
||||
@@ -106,7 +106,7 @@ export default function ServicesPage() {
|
||||
author: "Création",
|
||||
description: "Création et transformation d'espaces verts : plantations, organisation des espaces, amélioration esthétique. Nous réalisons vos projets.",
|
||||
tags: ["Aménagement", "Design"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/greenhouse-owner-presenting-flowers-options-potential-customer-retailer-using-laptop_158595-7051.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/greenhouse-owner-presenting-flowers-options-potential-customer-retailer-using-laptop_158595-7051.jpg?_wi=2",
|
||||
imageAlt: "Aménagement paysager professionnel",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user