diff --git a/components/LandingContent.tsx b/components/LandingContent.tsx new file mode 100644 index 0000000..e8fc22d --- /dev/null +++ b/components/LandingContent.tsx @@ -0,0 +1,98 @@ +const LandingContent = () => { + return ( +
+
+
+

+ It is still the early days. +

+

+ This is the first moment for non-developers to participate in the + Mango DAO. +

+
+ + {/* Section 1 */} +
+
+

+ What is Mango? +

+

+ Mango is a decentralized autonomous organization. Its purpose is + to create a well integrated and completely decentralized financial + ecosystem for traders. +

+ +

+ What is the Insurance Fund? +

+

+ The insurance fund will refund losses to the lenders on the Mango + smart contract in the event extreme volatility causes bankrupt + accounts and excess losses in the system. The proceeds of this + sale go directly into the DAO treasury for use as the insurance + fund. +

+
+ +
+

+ What is the{' '} + + $MNGO + {' '} + token? +

+

+ We believe that substantial rewards to a strong developer + community and liquidity incentives are the essential drivers for + growth and therefore the foundation of the Mango DAO. Mango + Governance tokens ($MNGO) will serve as the incentive for those + who can proove their work is useful to the DAO. +

+ +

+ $MNGO tokens were until + now only provided to contributors who helped to build out the + protocol. +

+
+
+ + {/* Section 2 */} +
+

+ How does it work? +

+

+ This is not a regular token sale, you are not about to invest for a + juicy ROI on day 1. +

+
+
+
+ ) +} + +export default LandingContent diff --git a/pages/index.tsx b/pages/index.tsx index 6177823..bf6a2e5 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -3,6 +3,7 @@ import TopBar from '../components/TopBar' import ContributionModal from '../components/ContributionModal' import PoolInfoCards from '../components/PoolInfoCards' import HeroSection from '../components/HeroSection' +import LandingContent from '../components/LandingContent' const Index = () => { return ( @@ -12,6 +13,7 @@ const Index = () => { +