Added metadata and apple icon.
All checks were successful
Node.js CI / build (22.x) (pull_request) Successful in 59s
Vercel Preview Deployment / Deploy-Preview (pull_request) Successful in 1m10s
Node.js CI / build (18.x) (pull_request) Successful in 1m2s
Node.js CI / build (20.x) (pull_request) Successful in 59s

This commit is contained in:
2025-09-19 00:25:52 -04:00
parent c2f64e2874
commit 501211da7c
3 changed files with 15 additions and 3 deletions

View File

@@ -6,6 +6,11 @@ export default function RootLayout(props: { children: React.ReactNode }) {
return (
<html suppressHydrationWarning>
<link rel="icon" href="/images/logo/favicon/favicon.ico" sizes="any" />
<link
rel="apple-touch-icon"
href="/images/logo/favicon/apple-icon.png"
sizes="any"
/>
<body>
<Provider>{children}</Provider>
</body>

View File

@@ -1,7 +1,14 @@
import type { Metadata } from "next";
import { Button, Heading, HStack, Link, Text, VStack } from "@chakra-ui/react";
import newLogo from "../../public/images/logo/New Logo (transparent).png";
import Image from "next/image";
export const metadata: Metadata = {
title: "Werwolf Kid Creations Website",
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."
};
export default function Home() {
return (
<VStack
@@ -72,7 +79,7 @@ export default function Home() {
</Text>
<Text w="100%" textAlign="left" fontSize="lg">
{
"My current priorities are to test this rebrand, update usernames to match my new alias, and work on making the WerewolfKid.monster website. Which is going to serve the same purpose that the Kobold Kid website was going to serve. As a bio, place to find social links, art of Lucid, and embeds from gumroad for the 3D textures. I hope to relaunch the eShop on this domain too with a new platform if I can figure out the legal hurdles of doing all of that."
"My current priorities are to test this rebrand, update usernames to match my new alias, and work on making the WerewolfKid.monster website. Which is going to serve the same purpose that the Kobold Kid website was going to serve as a bio, place to find social links, art of Lucid, and embeds from Gumroad for the 3D textures. I hope to relaunch the eShop on this domain too with a new platform if I can figure out the legal hurdles of doing all of that."
}
</Text>
</VStack>