update favicon
All checks were successful
deploy / deploy (push) Successful in 58s

This commit is contained in:
Lee
2023-10-22 08:38:59 +01:00
parent 319c4c13ea
commit 3293f3fde3
6 changed files with 11 additions and 21 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -1,5 +1,4 @@
import AppProvider from "@/components/AppProvider";
import { SSRSettings } from "@/ssrSettings";
import { ssrSettings } from "@/ssrSettings";
import { Metadata } from "next";
import { Inter } from "next/font/google";
import Image from "next/image";
@ -10,13 +9,13 @@ const font = Inter({ subsets: ["latin-ext"], weight: "500" });
export const metadata: Metadata = {
title: {
template: SSRSettings.siteName + " - %s",
default: SSRSettings.siteName,
template: ssrSettings.siteName + " - %s",
default: ssrSettings.siteName,
},
openGraph: {
title: SSRSettings.siteName,
title: ssrSettings.siteName,
description: "Aggregate your scores with other leaderboards together!",
url: SSRSettings.siteUrl,
url: ssrSettings.siteUrl,
locale: "en_US",
type: "website",
},
@ -41,7 +40,7 @@ export default function RootLayout({
/>
</div>
<AppProvider>{children}</AppProvider>
{children}
</body>
</html>
);