mango-web/pages/index.tsx

107 lines
3.5 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Head from 'next/head'
import { Divider, Button, Layout, Row, Col } from 'antd';
import Logo from '../components/Logo';
import Navigation from '../components/Navigation';
import StatsPanel from '../components/StatsPanel';
const { Header, Footer, Content } = Layout;
const IndexPage = () => (
<>
<Head>
<title>Mango Margin</title>
<meta charSet="utf-8" />
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lato:400,700"
/>
</Head>
<Layout
style={{
backgroundImage: "url(background.svg)",
backgroundRepeat: "no-repeat",
backgroundPosition: "-20px 0",
}}
>
<Header style={{ background: "none", marginBottom: "0" }}>
<Navigation />
</Header>
<Layout style={{ background: "none" }}>
<Content style={{ padding: "2em" }}>
<Row align="middle">
<Col xs={24} lg={10}>
<div style={{ padding: "2em" }}>
<p style={{ fontSize: 36, lineHeight: 1.5 }}>
Decentralized, cross-margin trading up to 5x leverage with
lightning speed and near-zero fees powered on Serum.
</p>
<Button
type="primary"
size="large"
style={{ padding: "0px 60px 0px 60px" }}
>
Start Trading
</Button>
</div>
</Col>
<Col xs={24} lg={14}>
<div style={{ padding: "2em" }}>
<StatsPanel />
</div>
</Col>
</Row>
<Row>
<Col xs={24} lg={8}>
<div style={{ padding: "2em" }}>
<p style={{ fontSize: 36 }}>Trade</p>
<p style={{ lineHeight: 2, fontSize: 16 }}>
Trade up to 5x margin, leveraged or short, with limit orders
on Serum DEXs fully on-chain order book as a maker or taker
while earning interest on deposits and positions for extra
profit.
</p>
</div>
</Col>
<Col xs={24} lg={8}>
<div style={{ padding: "2em" }}>
<p style={{ fontSize: 36 }}>Lend</p>
<p
style={{
width: 400,
lineHeight: 2,
fontSize: 16,
}}
>
Earn maximal interest on deposits, protect against inflation,
and utilize idle investments. Always maintain custody of your
funds.
</p>
</div>
</Col>
<Col xs={24} lg={8}>
<div style={{ padding: "2em" }}>
<p style={{ fontSize: 36 }}>Fees</p>
<p style={{ lineHeight: 2, fontSize: 16 }}>
No fees on interests. The only fees you will pay are for
trading on Serum DEX. Stake your SRM into our pool to reduce
the fees for everyone. Let's reach the MegaSerum fee tier
together 🚀
</p>
</div>
</Col>
</Row>
</Content>
</Layout>
<Footer>
<Divider />
<Row align="middle">
<Logo />© 2021 Blockworks Foundation
</Row>
</Footer>
</Layout>
</>
);
export default IndexPage;