diff --git a/frontend/src/app/components/about/about-sponsors.component.html b/frontend/src/app/components/about/about-sponsors.component.html
new file mode 100644
index 000000000..c24abc244
--- /dev/null
+++ b/frontend/src/app/components/about/about-sponsors.component.html
@@ -0,0 +1,16 @@
+
diff --git a/frontend/src/app/components/about/about-sponsors.component.scss b/frontend/src/app/components/about/about-sponsors.component.scss
new file mode 100644
index 000000000..c9fddde91
--- /dev/null
+++ b/frontend/src/app/components/about/about-sponsors.component.scss
@@ -0,0 +1,44 @@
+#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 20px;
+}
+
+.become-sponsor a {
+ margin-top: 10px;
+}
+
+#become-sponsor-container .btn {
+ margin-bottom: 24px;
+}
+
+#become-sponsor-container .ng-fa-icon {
+ color: #2ecc71;
+ margin-right: 5px;
+}
+
+#become-sponsor-container .sponsor-feature {
+ text-align: left;
+ width: 250px;
+ margin: 12px auto;
+}
+
+@media (max-width: 992px) {
+
+ #become-sponsor-container {
+ flex-wrap: wrap;
+ }
+
+}
diff --git a/frontend/src/app/components/about/about-sponsors.component.ts b/frontend/src/app/components/about/about-sponsors.component.ts
new file mode 100644
index 000000000..98e7d4384
--- /dev/null
+++ b/frontend/src/app/components/about/about-sponsors.component.ts
@@ -0,0 +1,9 @@
+import { Component } from '@angular/core';
+
+@Component({
+ selector: 'app-about-sponsors',
+ templateUrl: './about-sponsors.component.html',
+ styleUrls: ['./about-sponsors.component.scss'],
+})
+export class AboutSponsorsComponent {
+}
diff --git a/frontend/src/app/components/about/about.component.html b/frontend/src/app/components/about/about.component.html
index a4cc51f90..8ef59f29a 100644
--- a/frontend/src/app/components/about/about.component.html
+++ b/frontend/src/app/components/about/about.component.html
@@ -33,22 +33,7 @@
-
+