From f1a446bcf421588f80a1ce9d91a310318af9a7fb Mon Sep 17 00:00:00 2001 From: Liam Date: Thu, 18 Apr 2024 01:25:38 +0100 Subject: [PATCH] stat page embed --- src/app/(pages)/stats/page.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/app/(pages)/stats/page.tsx b/src/app/(pages)/stats/page.tsx index 55332af..77d2104 100644 --- a/src/app/(pages)/stats/page.tsx +++ b/src/app/(pages)/stats/page.tsx @@ -1,5 +1,12 @@ import { ReactElement } from "react"; import { Stats } from "@/app/components/stats"; +import { Metadata } from "next"; + +export const metadata: Metadata = { + openGraph: { + description: "Click to view the API statistics", + }, +}; export default async function Page(): Promise { return (