2023-09-21 13:25:19 +00:00
|
|
|
import classNames from 'classnames';
|
|
|
|
import { AnimatedDudeWithWire } from './graphics/dude';
|
2023-10-24 15:43:33 +00:00
|
|
|
import { t } from '@vegaprotocol/i18n';
|
2023-09-21 13:25:19 +00:00
|
|
|
|
|
|
|
export const LandingBanner = () => {
|
|
|
|
return (
|
|
|
|
<div className={classNames('relative mb-20')}>
|
|
|
|
<div className="">
|
|
|
|
<div
|
|
|
|
aria-hidden
|
2023-10-25 09:14:00 +00:00
|
|
|
className="absolute top-20 right-[120px] md:right-[240px] max-sm:hidden"
|
2023-09-21 13:25:19 +00:00
|
|
|
>
|
|
|
|
<AnimatedDudeWithWire />
|
|
|
|
</div>
|
2023-10-25 09:14:00 +00:00
|
|
|
<div className="pt-20 sm:w-[50%]">
|
2023-09-21 13:25:19 +00:00
|
|
|
<h1 className="text-6xl font-alpha calt mb-10">
|
2023-10-24 15:43:33 +00:00
|
|
|
{t('Earn commission & stake rewards')}
|
2023-09-21 13:25:19 +00:00
|
|
|
</h1>
|
|
|
|
<p className="text-lg mb-10">
|
2023-10-24 15:43:33 +00:00
|
|
|
{t(
|
2023-10-25 09:14:00 +00:00
|
|
|
'Invite friends and earn rewards from the trading fees they pay. Stake those rewards to earn multipliers on future rewards.'
|
2023-10-24 15:43:33 +00:00
|
|
|
)}
|
2023-09-21 13:25:19 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|