Add a "view codebase" button.

This commit is contained in:
Lucid Kobold
2024-04-03 17:34:39 -04:00
parent 400ff7a34f
commit 6d8dc3085b
3 changed files with 37 additions and 1 deletions

View File

@@ -3,6 +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 GitHub from "./GitHub";
const Buttons = (): JSX.Element => {
return (
@@ -32,6 +33,10 @@ const Buttons = (): JSX.Element => {
if (type === "ko-fi") {
return <KoFi key={type} />;
}
if (type === "GitHub") {
return <GitHub key={type} />;
}
})}
</HStack>
<VStack
@@ -59,6 +64,10 @@ const Buttons = (): JSX.Element => {
if (type === "ko-fi") {
return <KoFi key={type} />;
}
if (type === "GitHub") {
return <GitHub key={type} />;
}
})}
</VStack>
</Box>