Merge pull request 'Added metadata and apple icon.' (#8) from metadata into main
All checks were successful
Node.js CI / build (18.x) (push) Successful in 54s
Node.js CI / build (20.x) (push) Successful in 53s
Node.js CI / build (22.x) (push) Successful in 53s
Vercel Preview Deployment / Deploy-Preview (push) Successful in 1m2s
Vercel Production Deployment / Deploy-Production (push) Successful in 1m5s
All checks were successful
Node.js CI / build (18.x) (push) Successful in 54s
Node.js CI / build (20.x) (push) Successful in 53s
Node.js CI / build (22.x) (push) Successful in 53s
Vercel Preview Deployment / Deploy-Preview (push) Successful in 1m2s
Vercel Production Deployment / Deploy-Production (push) Successful in 1m5s
Reviewed-on: lcm/lcm-website#8
This commit is contained in:
@@ -6,6 +6,11 @@ export default function RootLayout(props: { children: React.ReactNode }) {
|
|||||||
return (
|
return (
|
||||||
<html suppressHydrationWarning>
|
<html suppressHydrationWarning>
|
||||||
<link rel="icon" href="/images/logo/favicon/favicon.ico" sizes="any" />
|
<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>
|
<body>
|
||||||
<Provider>{children}</Provider>
|
<Provider>{children}</Provider>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -1,7 +1,14 @@
|
|||||||
|
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 (transparent).png";
|
||||||
import Image from "next/image";
|
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() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
<VStack
|
<VStack
|
||||||
@@ -72,7 +79,7 @@ export default function Home() {
|
|||||||
</Text>
|
</Text>
|
||||||
<Text w="100%" textAlign="left" fontSize="lg">
|
<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>
|
</Text>
|
||||||
</VStack>
|
</VStack>
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import type { ThemeProviderProps } from "next-themes";
|
|||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import { LuMoon, LuSun } from "react-icons/lu";
|
import { LuMoon, LuSun } from "react-icons/lu";
|
||||||
|
|
||||||
export interface ColorModeProviderProps extends ThemeProviderProps { }
|
export interface ColorModeProviderProps extends ThemeProviderProps {}
|
||||||
|
|
||||||
export function ColorModeProvider(props: ColorModeProviderProps) {
|
export function ColorModeProvider(props: ColorModeProviderProps) {
|
||||||
return (
|
return (
|
||||||
@@ -49,7 +49,7 @@ export function ColorModeIcon() {
|
|||||||
return colorMode === "dark" ? <LuMoon /> : <LuSun />;
|
return colorMode === "dark" ? <LuMoon /> : <LuSun />;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ColorModeButtonProps extends Omit<IconButtonProps, "aria-label"> { }
|
interface ColorModeButtonProps extends Omit<IconButtonProps, "aria-label"> {}
|
||||||
|
|
||||||
export const ColorModeButton = React.forwardRef<
|
export const ColorModeButton = React.forwardRef<
|
||||||
HTMLButtonElement,
|
HTMLButtonElement,
|
||||||
|
|||||||
Reference in New Issue
Block a user