diff --git a/dapp/src/pages/LandingPage/CardButton.tsx b/dapp/src/pages/LandingPage/CardButton.tsx new file mode 100644 index 000000000..de963d501 --- /dev/null +++ b/dapp/src/pages/LandingPage/CardButton.tsx @@ -0,0 +1,27 @@ +import React from "react" +import { Link, Button, ButtonProps, LinkProps, Icon } from "@chakra-ui/react" +import { IconArrowUpRight } from "@tabler/icons-react" + +type CardButtonProps = ButtonProps & Pick + +export default function CardButton(props: CardButtonProps) { + const { children, isExternal, ...restProps } = props + return ( + + ) +} diff --git a/dapp/src/pages/LandingPage/index.tsx b/dapp/src/pages/LandingPage/index.tsx index 4658dcd07..8fda391d2 100644 --- a/dapp/src/pages/LandingPage/index.tsx +++ b/dapp/src/pages/LandingPage/index.tsx @@ -12,6 +12,7 @@ import IconCard from "./IconCard" import ValueCard from "./ValueCard" import TVLCard from "./TVLCard" import ContentCard from "./ContentCard" +import CardButton from "./CardButton" const MOCK_SEASON_DUE_TIMESTAMP = new Date(2024, 3, 20).getTime() / 1000 const PARTNER_LOGOS = [baseLogo, thresholdLogo, ledgerLogo, wormholeLogo] @@ -76,6 +77,12 @@ export default function LandingPage() { /> ))} + + Docs + + + FAQ + )