SPB Git forge

spb/vrai-prix

Public

Vrai-Prix — l'évaluation du vrai prix des propriétés résidentielles au Québec.

60commits 1branches 0releases
12.3 MBsize
maindefault branch
17 days agolast push
TypeScript 90.2% JavaScript 3.5% Python 3.4% CSS 1.9% HTML 0.6%

SEO : og:title/openGraph alignés sur le titre riche de l'accueil + lang fr-CA

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Simon-Pierre Boucher committed 1 mo ago (Aug 22, 2026) parent 4990105

2 changed files +14 −1

modified src/app/layout.tsx +1 −1
@@ -102,7 +102,7 @@ const TICKER = [
102 102
103 103 export default function RootLayout({ children }: LayoutProps<"/">) {
104 104 return (
105 − <html lang="fr">
105 + <html lang="fr-CA">
106 106 <body
107 107 className={`${inter.variable} ${spaceGrotesk.variable} ${jetbrains.variable}`}
108 108 >
modified src/app/page.tsx +13 −0
@@ -12,6 +12,19 @@ export const metadata: Metadata = {
12 12 description:
13 13 "Estimez gratuitement la valeur de n'importe quelle propriété du Québec : 3,7 millions d'unités d'évaluation, 745 119 ventes réelles, fourchette honnête P10-P90 et calcul montré en entier.",
14 14 alternates: { canonical: "/" },
15 + openGraph: {
16 + type: "website",
17 + siteName: "Vrai-Prix",
18 + locale: "fr_CA",
19 + url: "/",
20 + title:
21 + "Vrai-Prix — estimation immobilière gratuite au Québec · Un service Groupe KA",
22 + description:
23 + "Estimez gratuitement la valeur de n'importe quelle propriété du Québec : 3,7 millions d'unités d'évaluation, 745 119 ventes réelles, fourchette honnête P10-P90 et calcul montré en entier.",
24 + images: [
25 + { url: "https://www.vrai-prix.com/og.png", width: 1200, height: 630 },
26 + ],
27 + },
15 28 };
16 29
17 30 const TOP_VILLES = (
18 31