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 +

+
+ + {' '} + Get started{' '} + + + Learn more + + +
+ +
+
+
+
+ ) +}