File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,25 @@ import type { Metadata } from "next";
44import { BackButton } from "@/components/layout/back-button" ;
55import { 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+
711export 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
You can’t perform that action at this time.
0 commit comments