From 26b4d122f54cc52061684cbf6473d6f224baf1f1 Mon Sep 17 00:00:00 2001 From: Lucid Kobold Date: Fri, 19 Sep 2025 01:02:44 -0400 Subject: [PATCH] Update logo file name and added logo to metadata for the main page --- .../{New Logo (transparent).png => new-logo.png} | Bin src/app/layout.tsx | 2 ++ src/app/page.tsx | 4 ++-- 3 files changed, 4 insertions(+), 2 deletions(-) rename public/images/logo/{New Logo (transparent).png => new-logo.png} (100%) diff --git a/public/images/logo/New Logo (transparent).png b/public/images/logo/new-logo.png similarity index 100% rename from public/images/logo/New Logo (transparent).png rename to public/images/logo/new-logo.png diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5bd2100..6a4a69a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,6 +11,8 @@ export default function RootLayout(props: { children: React.ReactNode }) { href="/images/logo/favicon/apple-touch-icon.png" sizes="any" /> + + {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index e667eb7..d2ee57a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,12 +1,12 @@ 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 newLogo from "../../public/images/logo/new-logo.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." + "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() {