Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: missing meta data

mxkaske e43a30b0 7010014a

+14 -1
+14 -1
apps/web/src/app/play/layout.tsx
··· 4 4 import { BackButton } from "@/components/layout/back-button"; 5 5 import { Footer } from "@/components/layout/footer"; 6 6 7 + const TITLE = "OpenStatus"; 8 + const DESCRIPTION = 9 + "Open-Source alternative to your current monitoring service with beautiful status page"; 10 + 7 11 export const metadata: Metadata = { 12 + title: TITLE, 13 + description: DESCRIPTION, 14 + metadataBase: new URL("https://openstatus.dev"), 8 15 twitter: { 9 16 images: [`/api/og?monitorId=openstatus`], 17 + card: "summary_large_image", 18 + title: TITLE, 19 + description: DESCRIPTION, 10 20 }, 11 21 openGraph: { 12 - images: [`/api/og?monitorId=openstatu`], 22 + type: "website", 23 + images: [`/api/og?monitorId=openstatus`], 24 + title: TITLE, 25 + description: DESCRIPTION, 13 26 }, 14 27 }; 15 28