diff --git a/components/LandingContent.tsx b/components/ContentSection.tsx similarity index 99% rename from components/LandingContent.tsx rename to components/ContentSection.tsx index e16afff..a9028a8 100644 --- a/components/LandingContent.tsx +++ b/components/ContentSection.tsx @@ -1,7 +1,7 @@ import Button from './Button' import GradientText from './GradientText' -const LandingContent = () => { +const ContentSection = () => { return (
@@ -207,4 +207,4 @@ const LandingContent = () => { ) } -export default LandingContent +export default ContentSection diff --git a/components/ContributionModal.tsx b/components/ContributionModal.tsx index 10d0a56..4b89a66 100644 --- a/components/ContributionModal.tsx +++ b/components/ContributionModal.tsx @@ -150,7 +150,7 @@ const ContributionModal = () => { return ( <> -
+
{!submitted && !submitting && !editContribution ? ( <> diff --git a/components/ModalSection.tsx b/components/ModalSection.tsx new file mode 100644 index 0000000..5bb6ca8 --- /dev/null +++ b/components/ModalSection.tsx @@ -0,0 +1,23 @@ +import ContributionModal from "./ContributionModal" + +const ModalSection = () => { + return ( + <> +
+
+

+ It is still the early days. +

+

+ This is the first moment for non-developers to participate in + helping build the Mango protocol by supporting the inception of the + protocols Insurance Fund. +

+
+
+ + + ) +} + +export default ModalSection diff --git a/pages/ContributionPage.tsx b/pages/ContributionPage.tsx index e516de3..679c549 100644 --- a/pages/ContributionPage.tsx +++ b/pages/ContributionPage.tsx @@ -1,17 +1,17 @@ -import ContributionModal from '../components/ContributionModal' +import ModalSection from '../components/ModalSection' import PoolInfoCards from '../components/PoolInfoCards' import HeroSection from '../components/HeroSection' -import LandingContent from '../components/LandingContent' +import ContentSection from '../components/ContentSection' const ContributionPage = () => { return ( <> - +
- +