RBQ {general.rbq}
@@ -73,12 +74,19 @@ export default function Hero({ content }: { content: HeroContent }) {
{pillCta}
-
{title}
+
+ {title2}
+
*/}
+
{subtitle}
diff --git a/src/content.config.ts b/src/content.config.ts
index 741748e..7f9b0ef 100644
--- a/src/content.config.ts
+++ b/src/content.config.ts
@@ -42,6 +42,7 @@ const hero = defineCollection({
schema: z.object({
pillCta: z.string(),
title: z.string(),
+ title2: z.string(),
subtitle: z.string(),
cta: z.string(),
ctaHref: z.string(),
@@ -87,6 +88,8 @@ const contact = defineCollection({
button: z.string(),
}),
breadcrumbHome: z.string(),
+ rbq: z.string(),
+ neq: z.string(),
}),
});
diff --git a/src/content/contact/fr/main.json b/src/content/contact/fr/main.json
index fd9f4bd..321ec40 100644
--- a/src/content/contact/fr/main.json
+++ b/src/content/contact/fr/main.json
@@ -23,5 +23,7 @@
"description": "Obtenez une estimation personnalisée et gratuite pour votre projet de peinture ou décoration.",
"button": "Soumission gratuite"
},
- "breadcrumbHome": "Accueil"
+ "breadcrumbHome": "Accueil",
+ "rbq": "RBQ : ",
+ "neq": "NEQ : "
}
diff --git a/src/content/hero/fr/main.json b/src/content/hero/fr/main.json
index 69eef9a..8eb6f72 100644
--- a/src/content/hero/fr/main.json
+++ b/src/content/hero/fr/main.json
@@ -1,6 +1,7 @@
{
"pillCta": "Soumission gratuite",
- "title": "Peintres Décorateurs à votre service",
+ "title": "CACHET",
+ "title2": "PEINTRES DÉCORATEURS",
"subtitle": "Travaux de peinture résidentielle et commerciale, décoration intérieure et extérieure. Qualité professionnelle sur la Rive-Nord et Laval.",
"cta": "Soumission gratuite",
"ctaHref": "/soumission"
diff --git a/src/layouts/base.astro b/src/layouts/base.astro
index f70f5fd..9f15a15 100644
--- a/src/layouts/base.astro
+++ b/src/layouts/base.astro
@@ -4,6 +4,7 @@ import { getCollection } from 'astro:content';
import { getLocale } from '@/lib/locale';
import SEOHead from '@/components/seo-head.astro';
import Header from '@/components/header';
+import Footer from '@/components/footer.astro';
interface Props {
title?: string;
@@ -40,5 +41,6 @@ const navigationItems = nav.links.map((link) => ({ name: link.name, href: link.h
+