feat: initial commit

This commit is contained in:
2026-03-12 22:33:26 -04:00
parent 533df2cc7e
commit b7f8423b75
20 changed files with 6785 additions and 146 deletions

23
src/pages/landing-1.astro Normal file
View File

@@ -0,0 +1,23 @@
---
import Hero from '../components/Hero.astro';
import ServicesPreview from '../components/ServicesPreview.astro';
import WhyUs from '../components/WhyUs.astro';
import CTABanner from '../components/CTABanner.astro';
import { getLangFromUrl, t } from '../i18n/utils';
import general from '../content/settings/general.json';
import BaseLayout1 from '@/layouts/BaseLayout-1.astro';
const lang = getLangFromUrl(Astro.url);
---
<BaseLayout1
title="Peintres Décorateurs | Laval & Rive-Nord"
description={`${general.siteName} — Peintres décorateurs professionnels à Laval et sur la Rive-Nord. Peinture résidentielle et commerciale, décoration intérieure et extérieure. Soumission gratuite.`}
canonical="/"
>
<Hero />
<ServicesPreview />
<WhyUs />
<CTABanner />
</BaseLayout>