-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'sett/landing-v2' into develop
- Loading branch information
Showing
53 changed files
with
2,187 additions
and
647 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,69 @@ | ||
import s from './styles.module.scss'; | ||
import Image from 'next/image'; | ||
import { Button } from '@chakra-ui/react'; | ||
import Fade from '@/interactive/Fade'; | ||
import { useRouter } from 'next/navigation'; | ||
import useWindowSize from '@/hooks/useWindowSize'; | ||
import Scale from '@/interactive/Scale'; | ||
import Lines from '@/interactive/Lines'; | ||
import HeadingSection from '../HeadingSection'; | ||
import Chars from '@/interactive/Chars'; | ||
import ContentSection from '@/modules/landing/Componets/ContentSection'; | ||
|
||
export default function BitEth() { | ||
|
||
const router = useRouter(); | ||
const { mobileScreen } = useWindowSize(); | ||
|
||
return <div className={s.bitEth}> | ||
<div className={`${s.bitEth_inner} container`}> | ||
<div className={s.bitEth_content}> | ||
<Scale> | ||
<Image className={s.thumb} src={'landing/biteth.svg'} alt={'biteth.svg'} width={250} height={80} | ||
loading={'eager'} /> | ||
</Scale> | ||
<HeadingSection className={s.heading}> | ||
<Chars delay={.2}> | ||
Zero effort to migrate from Ethereum | ||
</Chars> | ||
</HeadingSection> | ||
<ContentSection className={s.content}> | ||
<Lines delay={.3}> | ||
Whatever your vision — a dapp, a fully onchain game, a DEX, or an ecosystem — there are many benefits of | ||
running your own blockchain. | ||
</Lines> | ||
</ContentSection> | ||
<div className={s.actions}> | ||
<Fade delay={0.5}> | ||
<Button | ||
bgColor={'#EF601B'} | ||
color={'#fff'} | ||
borderRadius={0} | ||
display={'flex'} | ||
justifyContent={'center'} | ||
alignItems={'center'} | ||
px={'24px'} | ||
py={'10px'} | ||
minW={['180px']} | ||
width={mobileScreen ? '100%' : ''} | ||
height={'48px'} | ||
fontWeight={400} | ||
fontSize={'16px'} | ||
_hover={{ | ||
bgColor: '#000', | ||
}} | ||
onClick={() => { | ||
router.push('/blockchains/customize'); | ||
}} | ||
> | ||
{`Build your Bitcoin L2`} | ||
</Button> | ||
</Fade> | ||
</div> | ||
</div> | ||
<Scale> | ||
<Image className={s.full} src={'/landing/carbon.jpg'} alt={'carbon'} width={1600} height={570} /> | ||
</Scale> | ||
</div> | ||
</div>; | ||
} |
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,32 @@ | ||
.bitEth { | ||
padding-top: 120px; | ||
background: #000; | ||
|
||
&_content { | ||
max-width: 820px; | ||
margin-left: auto; | ||
margin-right: auto; | ||
margin-bottom: 60px; | ||
text-align: center; | ||
} | ||
|
||
.thumb { | ||
margin-left: auto; | ||
margin-right: auto; | ||
margin-bottom: 28px; | ||
} | ||
|
||
.heading { | ||
color: #FFF; | ||
} | ||
|
||
.content { | ||
text-align: center; | ||
color: #FFF; | ||
} | ||
|
||
.actions { | ||
display: flex; | ||
justify-content: center; | ||
} | ||
} |
2 changes: 2 additions & 0 deletions
2
src/modules/landing/Componets/Chain/Cursor/styles.module.scss
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
.wrapCursor { | ||
position: relative; | ||
overflow: hidden; | ||
width: 100%; | ||
} | ||
|
||
.cursor { | ||
|
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
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
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
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
Oops, something went wrong.