|
|
|
@ -1,12 +1,13 @@
|
|
|
|
|
import React, { useEffect, useState } from 'react';
|
|
|
|
|
|
|
|
|
|
import { ethers, BigNumber } from 'ethers';
|
|
|
|
|
import { useAccount, useContractReads, useContractRead, usePrepareContractWrite, useContractWrite, useWaitForTransaction, erc721ABI } from 'wagmi';
|
|
|
|
|
import { NotificationContainer, NotificationManager } from 'react-notifications';
|
|
|
|
|
import debounce from 'lodash';
|
|
|
|
|
import { StatsPanel } from './Panels';
|
|
|
|
|
|
|
|
|
|
import MainABI from '../abi/main.json';
|
|
|
|
|
import '../styles/hero.css';
|
|
|
|
|
import 'react-notifications/lib/notifications.css';
|
|
|
|
|
import Unaboomer from '../img/unaboomer.png';
|
|
|
|
|
import Mailbomb from '../img/mailbomb.png';
|
|
|
|
|
import Explosion from '../img/explosion.png';
|
|
|
|
@ -226,6 +227,7 @@ export function Hero(props) {
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div id='hero'>
|
|
|
|
|
<NotificationContainer />
|
|
|
|
|
<h1>the web3 revolution & its consequences have been a disaster for the human race.</h1>
|
|
|
|
|
<p>
|
|
|
|
|
Technology is advancing at an exponential rate and boomers are being left behind. A.I., Bitcoin,
|
|
|
|
@ -347,6 +349,14 @@ export function Hero(props) {
|
|
|
|
|
</>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
<StatsPanel
|
|
|
|
|
leaderKillCount={options.leaderKillCount}
|
|
|
|
|
leaderAddress={options.leaderAddress}
|
|
|
|
|
unaboomersRadicalized={options.unaboomersRadicalized}
|
|
|
|
|
unaboomersKilled={options.unaboomersKilled}
|
|
|
|
|
bombsAssembled={options.bombsAssembled}
|
|
|
|
|
bombsExploded={options.bombsExploded}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|