diff --git a/docs/app/page.tsx b/docs/app/page.tsx index c0b88557..377e0ebf 100644 --- a/docs/app/page.tsx +++ b/docs/app/page.tsx @@ -6,15 +6,39 @@ import { Cta } from "../components/Cta"; import "./page.css"; import { PreviewImage } from "../components/PreviewImage"; import { Metadata } from "next"; +import { Head } from "nextra/components"; export const metadata: Metadata = { - title: "Bracket", + title: "Bracket | Open-source tournament system", description: - "Bracket (documentation) - free and open-source tournament system", + "Bracket is a free and open source tournament system. Set up a tournament, add teams, schedule matches, track scores and present live rankings.", + openGraph: { + title: "Bracket | Open-source tournament system", + description: + "Bracket is a free and open source tournament system. Set up a tournament, add teams, schedule matches, track scores and present live rankings.", + locale: "en_US", + url: "https://docs.bracketapp.nl", + siteName: "Bracket", + images: [{ url: "https://docs.bracketapp.nl/bracket-social-image.png" }], + }, }; export default function Page() { return ( <> + + { + // https://developers.google.com/search/docs/appearance/site-names#json-ld_1 + } + + diff --git a/docs/public/bracket-social-image.png b/docs/public/bracket-social-image.png new file mode 100644 index 00000000..466c4780 Binary files /dev/null and b/docs/public/bracket-social-image.png differ