/** * ============================================================================= * QWHPI — Quebec Weekly Housing Price Index * Author : Simon-Pierre Boucher * Contact : contact@spboucher.ai * File : web/app/layout.tsx * Purpose : Root layout — fonts, navigation, theme toggle, author footer. * ============================================================================= */ import type { Metadata } from "next"; import Link from "next/link"; import { Fraunces, Inter } from "next/font/google"; import "../styles/globals.css"; import ThemeToggle from "../components/ThemeToggle"; import CommandPalette from "../components/CommandPalette"; import SearchButton from "../components/SearchButton"; const inter = Inter({ subsets: ["latin"], variable: "--font-sans" }); const fraunces = Fraunces({ subsets: ["latin"], variable: "--font-display", weight: ["600", "700"], }); export const metadata: Metadata = { metadataBase: new URL("https://www.indexqc.house"), title: { default: "QHPI — Quebec Housing Price Index (monthly)", template: "%s · QHPI", }, description: "Quality-adjusted monthly housing price indexes for Quebec — province, " + "17 regions and 10 cities, with confidence intervals on every point. " + "Author: Simon-Pierre Boucher — contact@spboucher.ai", authors: [{ name: "Simon-Pierre Boucher" }], alternates: { canonical: "/" }, openGraph: { title: "QHPI — Quebec Housing Price Index", description: "Quebec housing prices, measured monthly, robustly. " + "Uncertainty always displayed, never hidden.", url: "https://www.indexqc.house", siteName: "QHPI", type: "website", locale: "en_CA", }, twitter: { card: "summary_large_image", title: "QHPI — Quebec Housing Price Index", description: "Quebec housing prices, measured monthly, robustly.", }, }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (