From 501211da7c552372e53c45dbbac3910a8e3dc6d5 Mon Sep 17 00:00:00 2001 From: Lucid Kobold Date: Fri, 19 Sep 2025 00:25:52 -0400 Subject: [PATCH] Added metadata and apple icon. --- src/app/layout.tsx | 5 +++++ src/app/page.tsx | 9 ++++++++- src/components/ui/color-mode.tsx | 4 ++-- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b1c684a..f21d4a1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,11 @@ export default function RootLayout(props: { children: React.ReactNode }) { return ( + {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index 4c383ff..e667eb7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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 ( { - "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." } diff --git a/src/components/ui/color-mode.tsx b/src/components/ui/color-mode.tsx index 9d7cab3..77092b3 100644 --- a/src/components/ui/color-mode.tsx +++ b/src/components/ui/color-mode.tsx @@ -10,7 +10,7 @@ import type { ThemeProviderProps } from "next-themes"; import * as React from "react"; import { LuMoon, LuSun } from "react-icons/lu"; -export interface ColorModeProviderProps extends ThemeProviderProps { } +export interface ColorModeProviderProps extends ThemeProviderProps {} export function ColorModeProvider(props: ColorModeProviderProps) { return ( @@ -49,7 +49,7 @@ export function ColorModeIcon() { return colorMode === "dark" ? : ; } -interface ColorModeButtonProps extends Omit { } +interface ColorModeButtonProps extends Omit {} export const ColorModeButton = React.forwardRef< HTMLButtonElement,