From aa6c12e749401b78bf66130a6563b0da5a09d846 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Thu, 16 Oct 2025 21:08:58 +0200 Subject: [PATCH] feat: add team section and call-to-action components to About page --- src/app/(main)/about/page.tsx | 5 +++- src/components/AboutCTA.tsx | 44 +++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 src/components/AboutCTA.tsx diff --git a/src/app/(main)/about/page.tsx b/src/app/(main)/about/page.tsx index 5cf9c5e..350e4c3 100644 --- a/src/app/(main)/about/page.tsx +++ b/src/app/(main)/about/page.tsx @@ -1,12 +1,15 @@ import { AboutHero } from "@/components/AboutHero" import { AboutSolutions } from "@/components/AboutSolutions" - +import { AboutTeam } from "@/components/AboutTeam" +import { AboutCTA } from "@/components/AboutCTA" export default function About() { return (
+ +
) } diff --git a/src/components/AboutCTA.tsx b/src/components/AboutCTA.tsx new file mode 100644 index 0000000..215f740 --- /dev/null +++ b/src/components/AboutCTA.tsx @@ -0,0 +1,44 @@ +export function AboutCTA() { + return ( +
+
+
+
+

+ Be Part of the Change +

+

+ Contribute your resources, build decentralized applications, or simply learn more about how you can get involved +

+ + +
+
+
+
+ ) +}