diff --git a/components/ContentSection.tsx b/components/ContentSection.tsx index 1b70c2b..d504e01 100644 --- a/components/ContentSection.tsx +++ b/components/ContentSection.tsx @@ -1,4 +1,4 @@ -import Button from './Button' +import LinkLeft from './LinkLeft' import GradientText from './GradientText' const ContentSection = () => { @@ -30,16 +30,13 @@ const ContentSection = () => { Mango is a decentralized autonomous organization. Its purpose is to improve the Mango protocol for the greater defi ecosystem. We aim to create commercially viable decentralized trading and lending - products for traders. + products.

- - -

Why the Insurance fund?

- At its core the Mango protocol is powered by lenders providing their + The Mango protocol is powered by lenders providing their capital for the community to use for trading and borrowing purposes. The insurance fund is the last line of defense for protecting our mango lenders in case the system fails. @@ -47,6 +44,9 @@ const ContentSection = () => {

What is the $MNGO token?

+

+ The token is the foundation of the Mango DAO and will be a pivital building block in the future of the protocol. +

Mango Governance tokens ($MNGO) will serve as the incentive for those who can prove their work is useful to @@ -60,14 +60,13 @@ const ContentSection = () => {

Why the token?

-

+

The introduction of the token gives contributing members of the DAO a chance to mold the future of the protocol. The token also helps bootstrap liquidity to the platform buy offering incentives to market makers and participants in the system. -
-
- The token is the foundation of the Mango DAO and will be a pivital building block in the future of the protocol.

-
-

+ Checkout the whitepaper + +
+

Token distribution:

@@ -91,7 +90,7 @@ const ContentSection = () => { Mango DAO

- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + A majority of the tokens will be locked in a smart contract only accessible through DAO governance votes.

@@ -99,7 +98,7 @@ const ContentSection = () => { Liquidity Incentives

- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + Bootstraping liquidity is important, market makers and other participants should be incentivized to be active in the books.

@@ -107,7 +106,7 @@ const ContentSection = () => { Insurance Fund

- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + MNGO will be exchange for funds commited to the insurance fund that helps protect Mango lenders.

@@ -115,25 +114,26 @@ const ContentSection = () => { Contributor Tokens

- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + Tokens distributed to early contributors of the protocol are unlocked and not on a vesting schedule. +

- +

- We want to be transparent. + We want to be fully transparent.

- We feel it important to detail the current risks to the system in order to give full transparency for participants in the insurance funds inception. + We feel it is important to detail current risks to the system in order to give full transparency for participants in the insurance fund sale.

-
-
+
+
{
-

+

Unaudited smart contracts.

-

- While we take great care and forethought in the way we build our smart contracts, we cannot guarantee they are free of potential exploits. - Users should always take caution when participating and do as much research as possible +

+ We take great care and forethought in the way we build our smart contracts, we opensource all code once + ready and work with many industry leading developers during creation. +
+
+ While this is the case we cannot guarantee they are free of potential exploits. + Users should always take caution when participating today and do on the potential risks.

-
+
{
-

+

New token sale mechanism

-

- We have focused on fairness for all participants in the sale. However, some players may game the system by inflating the token price during the deposit period (discouraging others to participate) before withdrawing when deposits are closed and lowering the price. +

+ We built our own sale and distribution mechanism in order to focus on fairness for all participants during and after the sale. +
+
+ While fairness is our intention, some participants may still game the system by inflating the token price during the + deposit period with the intention of discouraging others to participate. +
+
+ they then could withdraw their deposits during the restricted period + lowering the price for those that remain.

-
+
{
-

+

Not fully decentralzed; yet.

-

- Whilst the path to becoming decentralized is kicking off with the token sale, the team will have control over the direction of the protocol until the governance mechanism is fully established. - Contributers must trust the mango team until full decentralization is reached. +

+ Whilst the path to becoming decentralized is kicking off with the token sale, at inception the team will have control over the direction of the protocol until the governance mechanism is estabilshed and tools built out. +
+
+ Contributers must trust the mango team until full decentralization is reached. We offer full transparency in during this phase of transition and commit to creating a fair voting system for DAO participants.

-
-
- - - - - - - - - -
-

- Contributor tokens fully vested. -

-

- Tokens distributed to early contributors of the protocol are unlocked and not on a vesting schedule. This means they are full tradable by contributors at launch. The team fully commits to not dumping on you though. -

- -
@@ -267,28 +255,13 @@ const ContentSection = () => {
-
-
-
-
-

- Deposit USDC into Vault. -

-

- Users deposit USDC into a vault during the event period to - set their contribution amount. -

-
-
-
-

- 48 hour participation period. + The 48 hour participation period begins.

The event will span over 2 days split into two periods,{' '} @@ -329,9 +302,40 @@ const ContentSection = () => {

+
+
+
+
+

+ Deposit USDC into Vault. +

+

+ Users deposit and lock in their USDC into the contribution vault during the + Unrestricted period locking in their ticket for $MNGO redemptions later on. +

+
+
+
+
+ +
+
+
+
+

+ MNGO unlocked and redeemable. +

+

+ On conclusion of the even, MNGO will be unlocked for redemption from the distribution vault. Users receive a token amount + in proportion to their USDC contribution.{' '} +

+
+
+
+
@@ -358,21 +362,6 @@ const ContentSection = () => {
-
-
-
-
-

- MNGO unlocked and redeemable. -

-

- On conclusion of the token sale, $MNGO will be distributed - in proportion to your USDC contribution.{' '} -

-
-
-
-
diff --git a/components/LinkLeft.tsx b/components/LinkLeft.tsx new file mode 100644 index 0000000..efa1c85 --- /dev/null +++ b/components/LinkLeft.tsx @@ -0,0 +1,54 @@ +import { FunctionComponent } from 'react' +import styled from '@emotion/styled' +import tw from 'twin.macro' + +const StyledButton = styled.a` + font-weight: 700; + cursor: pointer; + + :hover { + ${tw`underline`} + } + + :disabled { + ${tw`cursor-not-allowed opacity-60`} + } +` + +// default heroicon does not allow customizing stroke +const ChevronRightIcon = ({ className }) => ( + + + +) + +interface LinkLeftProps { + className?: string + href?: string +} + +const LinkLeft: FunctionComponent = ({ + children, + className, + ...props +}) => { + return ( + + {children} + + + ) +} + +export default LinkLeft diff --git a/public/img/feature2.png b/public/img/feature2.png index d6dcf72..11a6b05 100644 Binary files a/public/img/feature2.png and b/public/img/feature2.png differ