diff --git a/dapp/src/pages/LandingPage/HeroSection.tsx b/dapp/src/pages/LandingPage/HeroSection.tsx new file mode 100644 index 000000000..eea6d70a4 --- /dev/null +++ b/dapp/src/pages/LandingPage/HeroSection.tsx @@ -0,0 +1,20 @@ +import React from "react" +import { Button, Heading, VStack, Text } from "@chakra-ui/react" + +function HeroSection() { + return ( + + + Bitcoin staking done right. + + + The open source, decentralized way to grow your bitcoin + + + + ) +} + +export default HeroSection diff --git a/dapp/src/pages/LandingPage/index.tsx b/dapp/src/pages/LandingPage/index.tsx new file mode 100644 index 000000000..94f912cf0 --- /dev/null +++ b/dapp/src/pages/LandingPage/index.tsx @@ -0,0 +1,11 @@ +import React from "react" +import { Flex } from "@chakra-ui/react" +import HeroSection from "./HeroSection" + +export default function LandingPage() { + return ( + + + + ) +}