Added metadata and favicon
All checks were successful
Main / build-and-push-docker-image (20.x) (push) Successful in 4m47s
Hourly cron job / cron (push) Successful in 1s

This commit is contained in:
2025-12-13 15:27:06 -05:00
parent 58e3fb73b1
commit 935331e825
2 changed files with 49 additions and 0 deletions

View File

@@ -34,8 +34,44 @@ export default function RootLayout({
return [client, ssr];
}, []);
const title = "Nazi Site Patrol Stats";
const description =
"A website to display various stats for the Nazi Site Patrol bot for Telegram. Developed and maintained by Werewolf Kid Creations.";
const url = "https://bot-stats.werewolfkid.monster";
const img = "/images/SPD-arrows.svg";
const domain = "werewolfkid.monster";
return (
<html lang="en" suppressHydrationWarning>
<title>{title}</title>
<meta name="description" content={description} />
<meta property="title" content={title} />
<meta name="theme-color" content="#00ffff" />
<link rel="icon" href={img} sizes="any" type="image/png" />
<meta property="image" content={img} />
<meta property="image:type" content="image/png" />
<meta property="image:width" content="653px" />
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="og:url" content={url} />
<meta property="og:type" content="website" />
<meta property="og:image" content={img} />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="653px" />
<meta property="og:image:height" content="651px" />
<meta property="image:height" content="651px" />
<meta name="twitter:title" content={title} />
<meta property="twitter:domain" content={domain} />
<meta property="twitter:url" content={url} />
<meta name="twitter:description" content={description} />
<meta name="twitter:image" content={img} />
<meta name="twitter:card" content="summary_large_image" />
<meta httpEquiv="content-language" content="en_US" />
<meta charSet="UTF-8" />
<link rel="icon" type="image/svg+xml" href={img} />
<link rel="shortcut icon" href={img} />
<link rel="apple-touch-icon" sizes="180x180" href={img} />
<link rel="manifest" href={img} />
<body>
<UrqlProvider client={client} ssr={ssr}>
<Provider>{children}</Provider>