Skip to content

Commit e43a30b

Browse files
committed
fix: missing meta data
1 parent 7010014 commit e43a30b

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

apps/web/src/app/play/layout.tsx

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,25 @@ import type { Metadata } from "next";
44
import { BackButton } from "@/components/layout/back-button";
55
import { Footer } from "@/components/layout/footer";
66

7+
const TITLE = "OpenStatus";
8+
const DESCRIPTION =
9+
"Open-Source alternative to your current monitoring service with beautiful status page";
10+
711
export const metadata: Metadata = {
12+
title: TITLE,
13+
description: DESCRIPTION,
14+
metadataBase: new URL("https://openstatus.dev"),
815
twitter: {
916
images: [`/api/og?monitorId=openstatus`],
17+
card: "summary_large_image",
18+
title: TITLE,
19+
description: DESCRIPTION,
1020
},
1121
openGraph: {
12-
images: [`/api/og?monitorId=openstatu`],
22+
type: "website",
23+
images: [`/api/og?monitorId=openstatus`],
24+
title: TITLE,
25+
description: DESCRIPTION,
1326
},
1427
};
1528

0 commit comments

Comments
 (0)