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