new-logo #16
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 43 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 5.4 KiB |
|
Before Width: | Height: | Size: 726 B |
|
Before Width: | Height: | Size: 1.6 KiB |
BIN
public/images/logo/favicon/favicon-96x96.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
3
public/images/logo/favicon/favicon.svg
Normal file
|
After Width: | Height: | Size: 78 KiB |
21
public/images/logo/favicon/site.webmanifest
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "MyWebSite",
|
||||
"short_name": "MySite",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/images/logo/favicon/web-app-manifest-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
},
|
||||
{
|
||||
"src": "/images/logo/favicon/web-app-manifest-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|
||||
BIN
public/images/logo/favicon/web-app-manifest-192x192.png
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
BIN
public/images/logo/favicon/web-app-manifest-512x512.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 59 KiB |
@@ -24,11 +24,6 @@ export default function RootLayout(props: { children: React.ReactNode }) {
|
||||
<meta property="image" content="/images/logo/new-logo.png" />
|
||||
<meta property="image:type" content="image/png" />
|
||||
<meta property="image:width" content="653px" />
|
||||
<link
|
||||
rel="apple-touch-icon"
|
||||
href="/images/logo/favicon/apple-touch-icon.png"
|
||||
sizes="any"
|
||||
/>
|
||||
<meta
|
||||
property="og:title"
|
||||
content={
|
||||
@@ -77,6 +72,18 @@ export default function RootLayout(props: { children: React.ReactNode }) {
|
||||
<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="/images/logo/favicon/favicon.svg"
|
||||
/>
|
||||
<link rel="shortcut icon" href="/images/logo/favicon/favicon.ico" />
|
||||
<link
|
||||
rel="apple-touch-icon"
|
||||
sizes="180x180"
|
||||
href="/images/logo/favicon/apple-touch-icon.png"
|
||||
/>
|
||||
<link rel="manifest" href="/images/logo/favicon/site.webmanifest" />
|
||||
<body>
|
||||
<Provider>{children}</Provider>
|
||||
</body>
|
||||
|
||||
@@ -132,7 +132,7 @@ export default function Home() {
|
||||
<Link
|
||||
target="_blank"
|
||||
color={colorScheme.buttonText}
|
||||
href="https://community.lucidcreations.media/"
|
||||
href="https://community.werewolfkid.monster/"
|
||||
>
|
||||
<Button variant="solid" bgColor={colorScheme.button} fontSize="xl">
|
||||
{"The Cove"}
|
||||
@@ -169,15 +169,6 @@ export default function Home() {
|
||||
</Heading>
|
||||
|
||||
<HStack gap="6" wrap="wrap" justifyContent="center">
|
||||
{/* <Link
|
||||
target="_blank"
|
||||
color={colorScheme.buttonText}
|
||||
href={`${socialSubdomain}`}
|
||||
>
|
||||
<Button variant="solid" bgColor={colorScheme.button} fontSize="xl">
|
||||
{"Werewolf Kid Website"}
|
||||
</Button>
|
||||
</Link> */}
|
||||
<Link
|
||||
target="_blank"
|
||||
color={colorScheme.buttonText}
|
||||
|
||||