Compare commits

..

2 Commits

Author SHA1 Message Date
6c03c917b3 Merge pull request 'Update logo file name and added logo to metadata for the main page' (#11) from metadata into main
All checks were successful
Node.js CI / build (18.x) (push) Successful in 51s
Node.js CI / build (20.x) (push) Successful in 52s
Node.js CI / build (22.x) (push) Successful in 52s
Vercel Production Deployment / Deploy-Production (push) Successful in 1m2s
Reviewed-on: lcm/lcm-website#11
2025-09-19 05:07:28 +00:00
26b4d122f5 Update logo file name and added logo to metadata for the main page
All checks were successful
Node.js CI / build (18.x) (pull_request) Successful in 59s
Node.js CI / build (20.x) (pull_request) Successful in 59s
Node.js CI / build (22.x) (pull_request) Successful in 59s
Vercel Preview Deployment / Deploy-Preview (pull_request) Successful in 1m11s
2025-09-19 01:02:44 -04:00
3 changed files with 4 additions and 2 deletions

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

@@ -11,6 +11,8 @@ export default function RootLayout(props: { children: React.ReactNode }) {
href="/images/logo/favicon/apple-touch-icon.png" href="/images/logo/favicon/apple-touch-icon.png"
sizes="any" sizes="any"
/> />
<meta property="og:image" content="/images/logo/new-logo.png" />
<meta property="og:image:type" content="image/png" />
<body> <body>
<Provider>{children}</Provider> <Provider>{children}</Provider>
</body> </body>

View File

@@ -1,12 +1,12 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Button, Heading, HStack, Link, Text, VStack } from "@chakra-ui/react"; import { Button, Heading, HStack, Link, Text, VStack } from "@chakra-ui/react";
import newLogo from "../../public/images/logo/New Logo (transparent).png"; import newLogo from "../../public/images/logo/new-logo.png";
import Image from "next/image"; import Image from "next/image";
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Werwolf Kid Creations Website", title: "Werwolf Kid Creations Website",
description: description:
"The LCM website and eShop has been temThe LCM website and eShop has been temporarily discontinued due to various external factors that interfered with my ability to focus and work on my creative passions. Along with some legal challenges that I hope to get sorted soon. This website going to serve as a bio, place to find social links, host art of Lucid, and embeds from Gumroad for the 3D textures. I hope to relaunch the eShop on this domain in the future as well." "The LCM website and eShop has been temporarily discontinued due to various external factors that interfered with my ability to focus and work on my creative passions. Along with some legal challenges that I hope to get sorted soon. This website going to serve as a bio, place to find social links, host art of Lucid, and embeds from Gumroad for the 3D textures. I hope to relaunch the eShop on this domain in the future as well."
}; };
export default function Home() { export default function Home() {