/** * ============================================================================= * QWHPI — Quebec Weekly Housing Price Index * Author : Simon-Pierre Boucher * Contact : contact@spboucher.ai * File : web/app/opengraph-image.tsx * Purpose : Generated Open Graph share image (1200×630, brand chart motif). * ============================================================================= */ import { ImageResponse } from "next/og"; export const runtime = "edge"; export const alt = "QHPI — Quebec Housing Price Index (monthly)"; export const size = { width: 1200, height: 630 }; export const contentType = "image/png"; export default function OgImage() { return new ImageResponse( (
QHPI
Quebec Housing Price Index · monthly
Quebec housing prices, measured monthly, robustly.
indexqc.house
), size, ); }