diff --git a/src/images/chambre-enfant-est.jpg b/src/images/chambre-enfant-est.jpg new file mode 100644 index 0000000..ae51519 Binary files /dev/null and b/src/images/chambre-enfant-est.jpg differ diff --git a/src/images/chambre-enfant-ouest.jpg b/src/images/chambre-enfant-ouest.jpg new file mode 100644 index 0000000..ed73323 Binary files /dev/null and b/src/images/chambre-enfant-ouest.jpg differ diff --git a/src/images/chambre-parentale.jpg b/src/images/chambre-parentale.jpg new file mode 100644 index 0000000..5bb2991 Binary files /dev/null and b/src/images/chambre-parentale.jpg differ diff --git a/src/images/salon-cheminee.jpg b/src/images/salon-cheminee.jpg new file mode 100644 index 0000000..376b212 Binary files /dev/null and b/src/images/salon-cheminee.jpg differ diff --git a/src/images/salon.jpg b/src/images/salon.jpg new file mode 100644 index 0000000..c818f48 Binary files /dev/null and b/src/images/salon.jpg differ diff --git a/src/pages/pieces.astro b/src/pages/pieces.astro index 678913d..74c6f85 100644 --- a/src/pages/pieces.astro +++ b/src/pages/pieces.astro @@ -7,7 +7,11 @@ import RightSection from "@components/ui/blocks/RightSection.astro"; import FeaturesStats from "@components/sections/features/FeaturesStats.astro"; // Import necessary images -import blueprints from "@images/blueprints-image.avif"; +import photoSalonCheminee from "@images/salon-cheminee.jpg"; +import photoSalonCuisine from "@images/salon.jpg"; +import photoChambreEnfantEst from "@images/chambre-enfant-est.jpg"; +import photoChambreEnfantOuest from "@images/chambre-enfant-ouest.jpg"; +import photoParentale from "@images/chambre-parentale.jpg"; import personWorking from "@images/person-working.avif"; import beforeAfter from "@images/before-after.avif"; import constructionWorkers from "@images/construction-workers.avif"; @@ -36,21 +40,21 @@ interface Article { const articles: Article[] = [ { isRightSection: true, - title: "Delivering Expert Guidance", + title: "Grande pièce de vie lumineuse", subTitle: "Embarking on a construction project can be overwhelming. With our professional consultation services, we guide you through every stage, ensuring you make informed decisions. Whether you are a DIY enthusiast or a skilled contractor, our experts are on hand to offer tailored advice on product selection, project scope, and compliance with local regulations.", single: false, - imgOne: blueprints, + imgOne: photoSalonCheminee, imgOneAlt: "Blueprints and digital tablet with construction plans.", - imgTwo: personWorking, + imgTwo: photoSalonCuisine, imgTwoAlt: "Person working in the office", }, { isRightSection: false, - title: "Transforming Designs into Reality", + title: "Chambre principale", subTitle: "Our skilled craftsmen bring precision and excellence to every construction project. From minor installations to substantial structural work, ScrewFast offers reliable construction services to turn your plans into tangible outcomes. We ensure the highest standards of safety and workmanship, utilizing top-quality tools and materials from our extensive inventory.", - img: beforeAfter, + img: photoParentale, imgAlt: "Construction site before and after", btnExists: true, btnTitle: "Learn More", @@ -58,13 +62,13 @@ const articles: Article[] = [ }, { isRightSection: true, - title: "Navigating Projects with Professional Oversight", + title: "Chambres enfants", subTitle: "Effective project management is at the heart of any successful build. ScrewFast provides thorough planning and robust management services that keep your project on time and within budget. Let us handle the complexities of workflow coordination, resource allocation, and stakeholder communication while you focus on your vision.", single: false, - imgOne: constructionWorkers, + imgOne: photoChambreEnfantOuest, imgOneAlt: "Construction workers orchestrating a project", - imgTwo: aerialView, + imgTwo: photoChambreEnfantEst, imgTwoAlt: "Aerial view of managed construction", }, { @@ -92,7 +96,7 @@ const articles: Article[] = [ }, ]; -const pageTitle: string = `Services | ${SITE.title}`; +const pageTitle: string = `Pièces | ${SITE.title}`; ---