Remove Twitter link. Replaced with Telegram updates channel.

This commit is contained in:
Lucid Kobold
2022-12-14 15:48:26 -05:00
parent 04de446f45
commit 6a9684751e
3 changed files with 10 additions and 16 deletions

View File

@@ -3,7 +3,7 @@ import { Box, HStack, VStack } from "@chakra-ui/react";
import CustomButton from "./Custom";
import links, { LinkObj } from "./data/links";
import KoFi from "./KoFi";
import Twitter from "./Twitter";
import Updates from "./Updates";
const Buttons = (): JSX.Element => {
return (
@@ -33,10 +33,6 @@ const Buttons = (): JSX.Element => {
if (type === "ko-fi") {
return <KoFi key={type} />;
}
if (type === "twitter") {
return <Twitter key={type} />;
}
})}
</HStack>
<VStack
@@ -64,10 +60,6 @@ const Buttons = (): JSX.Element => {
if (type === "ko-fi") {
return <KoFi key={type} />;
}
if (type === "twitter") {
return <Twitter key={type} />;
}
})}
</VStack>
</Box>