Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion src/app/demo-days/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down