add metadata and opengraph tags

This commit is contained in:
Nathaniel Tampus
2023-03-06 10:30:22 +08:00
parent 82ca2791c3
commit a9accad679
2 changed files with 47 additions and 1 deletions

View File

@@ -2,6 +2,38 @@ import GameAuthWrapper from "@/components/game/GameAuthWrapper";
import { getGame } from "@/lib/game";
import { notFound } from "next/navigation";
export async function generateMetadata({ params }: { params: { code: string } }) {
const game = await getGame(params.code);
if (!game) {
return {
description: "Game not found",
robots: {
index: false,
follow: false,
nocache: true,
noarchive: true
}
};
}
return {
description: `Play or watch a game with ${game.host?.name}`,
openGraph: {
title: "chessu",
description: `Play or watch a game with ${game.host?.name}`,
url: `https://ches.su/game/${game.code}`,
siteName: "chessu",
locale: "en_US",
type: "website"
},
robots: {
index: false,
follow: false,
nocache: true,
noarchive: true
}
};
}
export default async function Game({ params }: { params: { code: string } }) {
const game = await getGame(params.code);
if (!game) {