+
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 19c828b..f53f510 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -2,7 +2,7 @@
import MainLayout from "@/layouts/MainLayout.astro";
import HeroSection from "@components/sections/landing/HeroSection.astro";
import HeroSectionAlt from "@components/sections/landing/HeroSectionAlt.astro";
-import DiagnosticsSection from "@components/sections/landing/ClientsSection.astro";
+import DiagnosticsSection from "../components/sections/landing/DiagnosticsSection.astro";
import FeaturesGeneral from "@components/sections/features/FeaturesGeneral.astro";
import FeaturesNavs from "@components/sections/features/FeaturesNavs.astro";
import TestimonialsSection from "@components/sections/testimonials/TestimonialsSection.astro";
@@ -132,10 +132,7 @@ import photoVueZenith from "@images/vue-zenith.jpg";
-
+
diff --git a/src/pages/pieces.astro b/src/pages/pieces.astro
index 4bb2fcf..1dbc60d 100644
--- a/src/pages/pieces.astro
+++ b/src/pages/pieces.astro
@@ -1,22 +1,17 @@
---
-// Import necessary components
import MainLayout from "@/layouts/MainLayout.astro";
import MainSection from "@components/ui/blocks/MainSection.astro";
import LeftSection from "@components/ui/blocks/LeftSection.astro";
import RightSection from "@components/ui/blocks/RightSection.astro";
import FeaturesStats from "@components/sections/features/FeaturesStats.astro";
-
-// Import necessary images
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 photoChambre2 from "@images/chambre-2.jpg";
-import usingTools from "@images/using-tools.avif";
-import progressBuilding from "@images/progress-building.avif";
-import underConstruction from "@images/under-construction.avif";
-import { SITE } from "@data/constants";
+import { websiteStructuredDescription } from "../data_files/constants";
+import BureauSection from "../components/sections/pricing/BureauSection.astro";
interface Article {
isRightSection: boolean;
@@ -38,8 +33,9 @@ const articles: Article[] = [
{
isRightSection: true,
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.",
+ subTitle: "Exposée plein sud, la pièce de vie principale est baignée de lumière, tout en restant fraiche l’été. " +
+ "Elle offre un accès fluide à la terrasse à travers ses 3 portes-fenêtre." +
+ "Majoritairement de plein pied, la maison est organisée autour de sa grande terrasse orientée plein sud et accessible depuis toutes les pièces de vie, sans vis-à-vis.",
single: false,
imgOne: photoSalonCheminee,
imgOneAlt: "Blueprints and digital tablet with construction plans.",
@@ -57,8 +53,7 @@ const articles: Article[] = [
{
isRightSection: true,
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.",
+ subTitle: "Fenêtre panoramique, rangements et grand placard, parquet. Vue sur l’impasse.",
imgOne: photoParentale,
imgOneAlt: "Construction site before and after",
single: true,
@@ -81,16 +76,23 @@ const articles: Article[] = [
isRightSection: true,
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.",
+ "Un passage par la salle de jeu permet de rejoindre l’espace enfants : 2 grandes chambres plein sud, reliées par une salle d’eau commune, et par un dégagement qui offre grands placards et toilette. ",
single: false,
imgOne: photoChambreEnfantOuest,
imgOneAlt: "Construction workers orchestrating a project",
imgTwo: photoChambreEnfantEst,
imgTwoAlt: "Aerial view of managed construction",
+ },
+ {
+ isRightSection: false,
+ title: "Suite du bas",
+ subTitle: "L’étage inférieur de la maison, semi-enterré, a été entièrement refait en 2019. L’ancienne salle de jeux a été complètement rénovée et transformée en une suite avec salle d'eau, conçue pour héberger un couple avec enfants. ",
+ img: photoChambreEnfantOuest,
+ imgAlt: "Construction workers orchestrating a project",
}
];
-const pageTitle: string = `Pièces | ${SITE.title}`;
+const pageTitle: string = `Pièces de la maison | 177m2 à vendre à Albi`;
---
-
-
+
{
articles.map(article => {
return article.isRightSection ? (
@@ -154,24 +143,26 @@ const pageTitle: string = `Pièces | ${SITE.title}`;
);
})
}
-
+
+
+