From b77a16233b32ef7b45dd77d643850831b96233c5 Mon Sep 17 00:00:00 2001 From: hunicus <93150691+hunicus@users.noreply.github.com> Date: Tue, 21 Nov 2023 14:56:53 +0900 Subject: [PATCH] Change sponsor cta on about page --- .../app/components/about/about.component.html | 15 +++++++--- .../app/components/about/about.component.scss | 30 +++++++++++++++++++ 2 files changed, 41 insertions(+), 4 deletions(-) diff --git a/frontend/src/app/components/about/about.component.html b/frontend/src/app/components/about/about.component.html index c3f516fc7..c49ed8679 100644 --- a/frontend/src/app/components/about/about.component.html +++ b/frontend/src/app/components/about/about.component.html @@ -33,11 +33,18 @@ -

Sponsor the project

-
- Community - Enterprise +
+
+

If you're a business looking to integrate the Mempool explorer or API into your app—check out Mempool Enterprise®.

+ Explore Mempool Enterprise®
+
+

For exclusive swag, your avatar on the mempool.space About page, and more—sign up to be a Community Sponsor.

+ Become a Community Sponsor + +
+
diff --git a/frontend/src/app/components/about/about.component.scss b/frontend/src/app/components/about/about.component.scss index f7aa0b965..5b94bd0c6 100644 --- a/frontend/src/app/components/about/about.component.scss +++ b/frontend/src/app/components/about/about.component.scss @@ -246,3 +246,33 @@ width: 64px; height: 64px; } + +#become-sponsor-container { + display: flex; + flex-direction: row; + flex-wrap: nowrap; + justify-content: center; + align-items: center; + gap: 20px; + margin: 68px auto; +} + +.become-sponsor { + background-color: #1d1f31; + border-radius: 16px; + padding: 12px 20px; + width: 400px; + padding: 40px; +} + +.become-sponsor a { + margin-top: 10px; +} + +@media (max-width: 992px) { + + #become-sponsor-container { + flex-wrap: wrap; + } + +}