Openstatus www.openstatus.dev

fix: metadata (#1394)

authored by

Maximilian Kaske and committed by
GitHub
b8eab63f 3ebc0fb4

+6 -1
+5
apps/status-page/src/app/(public)/layout.tsx
··· 1 1 import { Link } from "@/components/common/link"; 2 2 import { ThemeProvider } from "@/components/theme-provider"; 3 3 import { Toaster } from "@/components/ui/sonner"; 4 + import type { Metadata } from "next"; 5 + 6 + export const metadata: Metadata = { 7 + title: "Theme Explorer", 8 + }; 4 9 5 10 export default async function Layout({ 6 11 children,
+1 -1
apps/status-page/src/app/metadata.ts
··· 1 1 import type { Metadata } from "next"; 2 2 3 - export const TITLE = "Theme explorer by openstatus"; 3 + export const TITLE = "openstatus"; 4 4 export const DESCRIPTION = 5 5 "Easily customize your status page using our built-in themes. Explore our themes and contribute new ones to the community."; 6 6