feat: add layout changes to landing page to match design
This commit is contained in:
parent
ad7f4a9fa3
commit
80fc6347fe
|
@ -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."
|
||||
/>
|
||||
<XStack>
|
||||
<StatusButton icon={<NodeIcon />}>Get Started</StatusButton>
|
||||
</XStack>
|
||||
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<XStack>
|
||||
<StatusButton icon={<NodeIcon />}>Get Started</StatusButton>
|
||||
</XStack>
|
||||
</YStack>
|
||||
</PageWrapperShadow>
|
||||
<QuickStartBar />
|
||||
</>
|
||||
|
|
Loading…
Reference in New Issue