Merge pull request 'new-logo' (#16) from new-logo into main
Reviewed-on: lcm/lcm-website#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" content="/images/logo/new-logo.png" />
|
||||||
<meta property="image:type" content="image/png" />
|
<meta property="image:type" content="image/png" />
|
||||||
<meta property="image:width" content="653px" />
|
<meta property="image:width" content="653px" />
|
||||||
<link
|
|
||||||
rel="apple-touch-icon"
|
|
||||||
href="/images/logo/favicon/apple-touch-icon.png"
|
|
||||||
sizes="any"
|
|
||||||
/>
|
|
||||||
<meta
|
<meta
|
||||||
property="og:title"
|
property="og:title"
|
||||||
content={
|
content={
|
||||||
@@ -77,6 +72,18 @@ export default function RootLayout(props: { children: React.ReactNode }) {
|
|||||||
<meta name="twitter:card" content="summary_large_image" />
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
<meta httpEquiv="content-language" content="en_US" />
|
<meta httpEquiv="content-language" content="en_US" />
|
||||||
<meta charSet="UTF-8" />
|
<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>
|
<body>
|
||||||
<Provider>{children}</Provider>
|
<Provider>{children}</Provider>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -132,7 +132,7 @@ export default function Home() {
|
|||||||
<Link
|
<Link
|
||||||
target="_blank"
|
target="_blank"
|
||||||
color={colorScheme.buttonText}
|
color={colorScheme.buttonText}
|
||||||
href="https://community.lucidcreations.media/"
|
href="https://community.werewolfkid.monster/"
|
||||||
>
|
>
|
||||||
<Button variant="solid" bgColor={colorScheme.button} fontSize="xl">
|
<Button variant="solid" bgColor={colorScheme.button} fontSize="xl">
|
||||||
{"The Cove"}
|
{"The Cove"}
|
||||||
@@ -169,15 +169,6 @@ export default function Home() {
|
|||||||
</Heading>
|
</Heading>
|
||||||
|
|
||||||
<HStack gap="6" wrap="wrap" justifyContent="center">
|
<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
|
<Link
|
||||||
target="_blank"
|
target="_blank"
|
||||||
color={colorScheme.buttonText}
|
color={colorScheme.buttonText}
|
||||||
|
|||||||