From 0db46c1f2516e49346aa9ff72cf4f61166e49d64 Mon Sep 17 00:00:00 2001 From: Kamil Pyszkowski Date: Tue, 16 Apr 2024 11:25:21 +0200 Subject: [PATCH] Implement `HeroSection` for landing page --- dapp/src/pages/LandingPage/HeroSection.tsx | 20 ++++++++++++++++++++ dapp/src/pages/LandingPage/index.tsx | 11 +++++++++++ 2 files changed, 31 insertions(+) create mode 100644 dapp/src/pages/LandingPage/HeroSection.tsx create mode 100644 dapp/src/pages/LandingPage/index.tsx 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 ( + + + + ) +}