From bb5172da92be7a27258380ec3d56adbea3b283eb Mon Sep 17 00:00:00 2001 From: SaharPak Date: Sat, 13 Jun 2026 12:24:29 +0000 Subject: [PATCH] chore: improve demo days archive SEO metadata Co-authored-by: Sahar --- src/app/demo-days/page.tsx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/app/demo-days/page.tsx b/src/app/demo-days/page.tsx index 8414ad7..64b02db 100644 --- a/src/app/demo-days/page.tsx +++ b/src/app/demo-days/page.tsx @@ -4,9 +4,20 @@ import { format } from "date-fns"; import type { Metadata } from "next"; import type { DemoDayWinnerWithProduct } from "@/types/database"; +const demoDaysDescription = + "Browse past Product Builders demo days, weekly winners, vote counts, and recordings."; + export const metadata: Metadata = { title: "Demo Days Archive", - description: "Past demo days and their winners.", + description: demoDaysDescription, + alternates: { + canonical: "/demo-days", + }, + openGraph: { + title: "Demo Days Archive", + description: demoDaysDescription, + url: "/demo-days", + }, }; export default async function DemoDaysPage() {