Skip to content

Commit

Permalink
refactor: removed docs link and added link to repo
Browse files Browse the repository at this point in the history
  • Loading branch information
pierobassa committed May 30, 2024
1 parent 12fe399 commit 4b2764c
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions apps/frontend/src/components/InfoCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
Text,
Button,
Flex,
Link,
} from "@chakra-ui/react";
import { MdOutlineArrowOutward } from "react-icons/md";

Expand All @@ -32,23 +33,26 @@ export const InfoCard = () => {
mt={{ base: 4, md: 0 }}
direction={{ base: "column", md: "row" }}
>
<Button
{/* <Button
rounded={"full"}
colorScheme="primary"
size={"md"}
leftIcon={<MdOutlineArrowOutward />}
>
Build your X-Dapp
</Button>
<Button
rounded={"full"}
size={"md"}
leftIcon={<MdOutlineArrowOutward />}
mt={{ base: 2, md: 0 }}
ml={{ base: 0, md: 2 }}
>
Github repository
</Button>
</Button> */}
<Link isExternal href="https://github.com/vechain/x-app-template">
<Button
rounded={"full"}
colorScheme="primary"
size={"md"}
leftIcon={<MdOutlineArrowOutward />}
mt={{ base: 2, md: 0 }}
ml={{ base: 0, md: 2 }}
>
Github repository
</Button>
</Link>
</Flex>
</Flex>
</VStack>
Expand Down

0 comments on commit 4b2764c

Please sign in to comment.