fix broken urls #15
@@ -17,6 +17,8 @@ const colorScheme = {
|
||||
buttonText: "gray.950"
|
||||
};
|
||||
|
||||
const socialSubdomain = "https://social.werewolfkid.monster/";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<VStack
|
||||
@@ -108,7 +110,7 @@ export default function Home() {
|
||||
<Link
|
||||
target="_blank"
|
||||
color={colorScheme.buttonText}
|
||||
href="http://social.werewolfkid.monster/gumroad/"
|
||||
href={`${socialSubdomain}gumroad`}
|
||||
>
|
||||
<Button variant="solid" bgColor={colorScheme.button} fontSize="xl">
|
||||
{"Gumroad"}
|
||||
@@ -148,7 +150,7 @@ export default function Home() {
|
||||
<Link
|
||||
target="_blank"
|
||||
color={colorScheme.buttonText}
|
||||
href="http://social.werewoldkid.monster/discord"
|
||||
href={`${socialSubdomain}discord`}
|
||||
>
|
||||
<Button variant="solid" bgColor={colorScheme.button} fontSize="xl">
|
||||
{"Discord Server"}
|
||||
@@ -170,7 +172,7 @@ export default function Home() {
|
||||
{/* <Link
|
||||
target="_blank"
|
||||
color={colorScheme.buttonText}
|
||||
href="https://werewolfkid.monster/"
|
||||
href={`${socialSubdomain}`}
|
||||
>
|
||||
<Button variant="solid" bgColor={colorScheme.button} fontSize="xl">
|
||||
{"Werewolf Kid Website"}
|
||||
@@ -179,7 +181,7 @@ export default function Home() {
|
||||
<Link
|
||||
target="_blank"
|
||||
color={colorScheme.buttonText}
|
||||
href="http://social.werwolfkid.com/bsky"
|
||||
href={`${socialSubdomain}bsky`}
|
||||
>
|
||||
<Button variant="solid" bgColor={colorScheme.button} fontSize="xl">
|
||||
{"Bsky"}
|
||||
@@ -188,7 +190,7 @@ export default function Home() {
|
||||
<Link
|
||||
target="_blank"
|
||||
color={colorScheme.buttonText}
|
||||
href="http://social.werwolfkid.com/fa"
|
||||
href={`${socialSubdomain}fa`}
|
||||
>
|
||||
<Button variant="solid" bgColor={colorScheme.button} fontSize="xl">
|
||||
{"FurAffinity"}
|
||||
@@ -210,7 +212,7 @@ export default function Home() {
|
||||
<Link
|
||||
target="_blank"
|
||||
color={colorScheme.buttonText}
|
||||
href="http://social.werewolfkid.monster/twitch"
|
||||
href={`${socialSubdomain}twitch`}
|
||||
>
|
||||
<Button variant="solid" bgColor={colorScheme.button} fontSize="xl">
|
||||
{"Twitch"}
|
||||
@@ -219,7 +221,7 @@ export default function Home() {
|
||||
<Link
|
||||
target="_blank"
|
||||
color={colorScheme.buttonText}
|
||||
href="http://social.werewolfkid.monster/yt-vods"
|
||||
href={`${socialSubdomain}yt-vods`}
|
||||
>
|
||||
<Button variant="solid" bgColor={colorScheme.button} fontSize="xl">
|
||||
{"YouTube VODs"}
|
||||
@@ -228,7 +230,7 @@ export default function Home() {
|
||||
<Link
|
||||
target="_blank"
|
||||
color={colorScheme.buttonText}
|
||||
href="http://social.werewolfkid.monster/yt-archives"
|
||||
href={`${socialSubdomain}yt-archives`}
|
||||
>
|
||||
<Button variant="solid" bgColor={colorScheme.button} fontSize="xl">
|
||||
{"YouTube Archives"}
|
||||
|
||||
Reference in New Issue
Block a user