feat: add layout changes to landing page to match design

This commit is contained in:
Ivana Andersson 2023-08-21 16:03:40 +03:00
parent ad7f4a9fa3
commit 80fc6347fe
1 changed files with 21 additions and 15 deletions

View File

@ -1,30 +1,36 @@
import PageWrapperShadow from '../../components/PageWrappers/PageWrapperShadow'
import './LandingPage.css'
import QuickStartBar from '../../components/General/QuickStartBar/QuickStartBar'
import Titles from '../../components/General/Titles'
import { Button as StatusButton } from '@status-im/components'
import NodeIcon from '../../components/Icons/NodeIcon'
import NimbusLogo from '../../components/Logos/NimbusLogo'
// import Titles from '../../components/General/Titles'
import { XStack, YStack } from 'tamagui'
import Title from '../../components/General/Title'
import NimbusLogo from '../../components/Logos/NimbusLogo'
import NodeIcon from '../../components/Icons/NodeIcon'
import { Button as StatusButton, Text } from '@status-im/components'
function LandingPage() {
return (
<>
<PageWrapperShadow rightImageSrc="/background-images/landing-page-bg.png">
<div className="landing-page">
<XStack>
<YStack className="landing-page">
<XStack pt={'70px'}>
<NimbusLogo />
</XStack>
<YStack>
<Titles
title="Light and performant clients, for all Ethereum validators."
subtitle="Nimbus Nodes allows you to take control and ownership of the services you wish to run in a completely trustless and decentralized manner."
/>
<YStack style={{ width: '100%', margin: '7em 0 4em' }}>
<Title color={'#09101C'}>
Light and performant clients, for all Ethereum validators.
</Title>
<Text size={15} weight="regular">
<strong>Nimbus Nodes</strong> allows you to take control and ownership of the services
you wish to run in a completely trustless and decentralized manner.
</Text>
</YStack>
<XStack>
<StatusButton icon={<NodeIcon />}>Get Started</StatusButton>
</XStack>
</YStack>
</div>
</PageWrapperShadow>
<QuickStartBar />
</>