Skip to content

Commit

Permalink
fx
Browse files Browse the repository at this point in the history
  • Loading branch information
sett committed Jan 12, 2024
1 parent eb4959b commit eba53ae
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 20 deletions.
Binary file added public/landing/images/arcade-chain.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/landing/images/ecosystem1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/landing/images/ecosystem2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/landing/images/ecosystem3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/landing/images/ecosystem4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 1 addition & 3 deletions src/modules/landing/Componets/Chain/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import s from './styles.module.scss';

import chain_1 from 'public/landing/compress/app-chain.png';
import chain_2 from 'public/landing/compress/naka-chain.png';
import chain_3 from 'public/landing/compress/ai-chain.png';
import chain_3 from 'public/landing/images/arcade-chain.jpg';
import Chars from '@/interactive/Chars';
import Fade from '@/interactive/Fade';
import { Button, HStack } from '@chakra-ui/react';
Expand Down Expand Up @@ -55,7 +55,6 @@ const DATA_CHAINS = [
{
img: chain_2,
title: 'Naka Chain',
subTitle: 'Coming soon',
stud: 2,
link: 'https://nakachain.xyz/',
data: [
Expand Down Expand Up @@ -91,7 +90,6 @@ const DATA_CHAINS = [
{
img: chain_3,
title: 'Arcade Chain',
subTitle: 'Coming soon',
stud: 3,
link: 'https://bitcoinarcade.xyz/',
data: [
Expand Down
2 changes: 1 addition & 1 deletion src/modules/landing/Componets/Ecosystem/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import Lines from '@/interactive/Lines';
const DATA_ECOSYSTEM = [
{
img: ecosystem1,
title: 'Have 100% dedicated throughput',
title: 'Earn sequencer fees',
stud: 2,
bgTop: 'FFD73B',
bgBottom: 'A05700',
Expand Down
2 changes: 1 addition & 1 deletion src/modules/landing/Componets/Hero/Content/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default function HeroContent() {
bgColor: '#000',
}}
onClick={() => {
router.push('/blockchains/customize');
router.push('/allowlist');
}}
>
Join the allowlist
Expand Down
23 changes: 9 additions & 14 deletions src/modules/landing/Componets/ScalableSlide/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function ScalableSlide() {
if (refSlide.current.index === 0) return;

refItems.current &&
animation(refItems.current[2], refItems.current[0]);
animation(refItems.current[2], refItems.current[0]);
refSlide.current.index = 0;
setIndexActive(0);
},
Expand All @@ -81,7 +81,7 @@ export default function ScalableSlide() {
duration: 3,
onStart: () => {
refItems.current &&
animation(refItems.current[0], refItems.current[1]);
animation(refItems.current[0], refItems.current[1]);
setIndexActive(1);
refSlide.current.index = 1;
},
Expand All @@ -91,7 +91,7 @@ export default function ScalableSlide() {
duration: 3,
onStart: () => {
refItems.current &&
animation(refItems.current[1], refItems.current[2]);
animation(refItems.current[1], refItems.current[2]);
setIndexActive(2);
refSlide.current.index = 2;
},
Expand All @@ -118,13 +118,12 @@ export default function ScalableSlide() {
<div className={s.scalable_top}>
<div className={s.scalable_top_inner}>
<HeadingSection className={s.scalable_heading}>
<Chars>Scalable infrastructure for Bitcoin</Chars>
<Chars>Welcome to the future of Bitcoin.</Chars>
</HeadingSection>
<ContentSection className={s.scalable_content}>
<Lines delay={0.1}>
If Ethereum is the world’s computer, Bitcoin is the world’s
supercomputer. With Bitcoin Virtual Machine, anyone can launch
their own Bitcoin L2 blockchain.
If Ethereum is the world’s computer, Bitcoin is the world’s supercomputer. With Bitcoin Virtual Machine,
anyone can launch their own Bitcoin L2 blockchain.
</Lines>
</ContentSection>
</div>
Expand All @@ -139,23 +138,19 @@ export default function ScalableSlide() {
indexActive={indexActive === 0}
title={'Unlimited throughput'}
>
Hyperscale Bitcoin with an unlimited number of Bitcoin Virtual
Machines as Bitcoin L2 blockchains.
Hyperscale Bitcoin with an unlimited number of Bitcoin Virtual Machines as Bitcoin L2 blockchains.
</ScalableContent>
<ScalableContent
indexActive={indexActive === 1}
title={'Infinite applications'}
>
Bitcoin Virtual Machines support Solidity smart contracts on
Bitcoin, so you can quickly build all kinds of decentralized
applications on Bitcoin.
Bitcoin Virtual Machines support Solidity smart contracts on Bitcoin, so you can quickly build all kinds of decentralized applications on Bitcoin.
</ScalableContent>
<ScalableContent
indexActive={indexActive === 2}
title={'Fast & cheap'}
>
Bitcoin Virtual Machines implement rollups on Bitcoin. Rollups
significantly reduce the block time and transaction fees.
Bitcoin Virtual Machines implement rollups on Bitcoin. Rollups significantly reduce the block time and transaction fees.
</ScalableContent>
<div className={s.scalable_bottom_po_wrap}>
<div ref={refPo} className={s.scalable_bottom_po} />
Expand Down
2 changes: 1 addition & 1 deletion src/modules/landing/Componets/ScaleableMobile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import ItemScaleableMobile from './ItemScaleableMobile';

const DATA_MOBILE = [
{
title: 'Scalable infrastructure for Bitcoin',
title: 'Welcome to the future of Bitcoin.',
description:
'If Ethereum is the world’s computer, Bitcoin is the world’s supercomputer. With Bitcoin Virtual Machine, anyone can launch their own Bitcoin L2 blockchain.',
img: img1,
Expand Down

0 comments on commit eba53ae

Please sign in to comment.