-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement
HeroSection
for landing page
- Loading branch information
1 parent
cde70d9
commit 0db46c1
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import React from "react" | ||
import { Button, Heading, VStack, Text } from "@chakra-ui/react" | ||
|
||
function HeroSection() { | ||
return ( | ||
<VStack spacing={0} mt={13} mb={20}> | ||
<Heading fontSize="6xl" mb={2} fontWeight="semibold"> | ||
Bitcoin staking done right. | ||
</Heading> | ||
<Text fontSize="xl" lineHeight={7} mb={10} fontWeight="medium"> | ||
The open source, decentralized way to grow your bitcoin | ||
</Text> | ||
<Button size="lg" px={7} fontWeight="bold" lineHeight={6} h="auto"> | ||
Deposit BTC | ||
</Button> | ||
</VStack> | ||
) | ||
} | ||
|
||
export default HeroSection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import React from "react" | ||
import { Flex } from "@chakra-ui/react" | ||
import HeroSection from "./HeroSection" | ||
|
||
export default function LandingPage() { | ||
return ( | ||
<Flex w="full" flexFlow="column" px={10}> | ||
<HeroSection /> | ||
</Flex> | ||
) | ||
} |