import Button from './Button' //import ButtonWhite from './ButtonWhite' import { ReceiptTaxIcon, LightningBoltIcon, CurrencyDollarIcon, LibraryIcon, } from '@heroicons/react/outline' import LinkLeft from './LinkLeft' const features = [ { name: 'Maximum capital efficiency.', description: "Every market is cross-collateralized. Mango's risk engine let's you utilize all your assets and derivative contracts as collateral.", icon: CurrencyDollarIcon, }, { name: 'Sub-second latency.', description: 'Instant order execution at the price of less than a cent. Low latency allows market makers to post tight spreads on the books. Oh, and liquidations are instant as well, so watch your exposure.', icon: LightningBoltIcon, }, { name: 'The lowest fees.', description: 'Trade with the lowest fee possible. SRM deposits are pooled for a collective discount. Mango is the first protocol to charge zero fees on margin borrowing & lending.', icon: ReceiptTaxIcon, }, { name: 'Spot & perpetual markets.', description: 'Trade spot markets and derivitive assets all in one unified experience. Spot margin with up to 5x leverage, perpetuals futures with up to 20x.', icon: LibraryIcon, }, ] const FeatureSection = () => { return ( <>

Completely permissionless.

Open source, all data is on-chain. Trade spot margined markets and leveraged perpetual futures all cross-collateralized with up to 10x leverage.

mango markets

Love trading again.

{/*

“Cras velit quis eros eget rhoncus lacus ultrices sed diam. Sit orci risus aenean curabitur donec aliquet. Mi venenatis in euismod ut.”

@troll_arse
*/}
{features.map((feature) => (

{feature.name}

{feature.description}
))}

More than an exchange.

Mango gives full control and tracking over assets right from the account hub. Earn interest on deposits and borrow against collateral all in one single place.

{/*

“Cras velit quis eros eget rhoncus lacus ultrices sed diam. Sit orci risus aenean curabitur donec aliquet. Mi venenatis in euismod ut.”

@troll_arse
*/}
Inbox user interface

You are in control.

You have self-custody of your assets; no more centralized counter-party risk.

Fully customize your experience.

Complete control over layout, theme, and your trading view.

Trade management simplified.

Track your futures positions, liabilities, create sub-accounts and track progress overtime.

Organically grown, fully opensource.

Mango markets are grown organically with no pesticides, trade and manage your assets with the best in class user interface, built by traders for traders.


Run it yourself locally
) } export default FeatureSection