cleaning up

master
lza_menace 2 years ago
parent f857fc2412
commit 009055461e

Binary file not shown.

@ -228,18 +228,20 @@ export function Hero(props) {
return ( return (
<div id='hero'> <div id='hero'>
<NotificationContainer /> <NotificationContainer />
<h1>the web3 revolution & its consequences have been a disaster for the human race.</h1> <h1 id='heroTitle'>the web3 revolution & its consequences have been a disaster for the human race.</h1>
<p> <p id='heroText'>
Technology is advancing at an exponential rate and boomers are being left behind. A.I., Bitcoin, Technology is advancing at an exponential rate and boomers are being left behind. A.I., Bitcoin,
and expensive JPEGs have made them angry. <br /><br /> and expensive JPEGs have made them angry. <br /><br />
They've begun to radicalize. {options.unaboomerMaxSupply > 0 ? '35,000': options.unaboomerMaxSupply} Boomers have joined forces They've begun to radicalize. {options.unaboomerMaxSupply > 0 ? options.unaboomerMaxSupply: '35,000'} Boomers have joined forces
to lash out at the system.<br /><br /> to lash out at the system.<br /><br />
</p> </p>
<div id='heroFlex'> <div id='heroFlex'>
<div className='heroFlexItem'> <div className='heroFlexItem'>
<img src={Unaboomer} width='280px' alt='Pixelated Unaboomer profile picture - a hooded man with dark sunglasses.' /> <img src={Unaboomer} width='280px' alt='Pixelated Unaboomer profile picture - a hooded man with dark sunglasses.' />
<p> <p>
Unaboomers are terrorizing the metaverse.
This gang of deplorables is on a warpath to stress
the system and spark a revolution against technology.<br /><br />
</p> </p>
{options.unaboomersMinted > 0 && ( {options.unaboomersMinted > 0 && (
<p> <p>
@ -349,18 +351,22 @@ export function Hero(props) {
</> </>
)} )}
</div> </div>
<StatsPanel {isConnected && address && (
leaderKillCount={options.leaderKillCount} <>
leaderAddress={options.leaderAddress} <StatsPanel
unaboomersRadicalized={options.unaboomersRadicalized} leaderKillCount={options.leaderKillCount}
unaboomersKilled={options.unaboomersKilled} leaderAddress={options.leaderAddress}
bombsAssembled={options.bombsAssembled} unaboomersRadicalized={options.unaboomersRadicalized}
bombsExploded={options.bombsExploded} unaboomersKilled={options.unaboomersKilled}
/> bombsAssembled={options.bombsAssembled}
<TrollboxPanel bombsExploded={options.bombsExploded}
ws={props.ws} />
address={address} <TrollboxPanel
/> ws={props.ws}
address={address}
/>
</>
)}
</div> </div>
) )
} }

@ -8,6 +8,11 @@
margin: 1em auto; margin: 1em auto;
} }
#heroText {
width: 80%;
margin: 2em auto;
}
#heroFlex { #heroFlex {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
@ -34,6 +39,7 @@ button.doThing {
margin: 1em; margin: 1em;
cursor: pointer; cursor: pointer;
transition: .1s ease all; transition: .1s ease all;
min-width: 180px;
} }
button.doThing:hover { button.doThing:hover {

Loading…
Cancel
Save