From 5fe448bcf1844cecc5c8e3e9e03fcffc83859ebc Mon Sep 17 00:00:00 2001
From: Cristina Lare <100524474+cristinalare@users.noreply.github.com>
Date: Thu, 26 Mar 2026 15:21:39 +0200
Subject: [PATCH] feat: add tweets/testimonials
---
src/app/about/page.tsx | 65 ++++++++++++++++++++++++++++++++++++++++
src/app/globals.css | 8 +++--
src/components/Tweet.tsx | 20 +++++++++++++
3 files changed, 91 insertions(+), 2 deletions(-)
create mode 100644 src/components/Tweet.tsx
diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 36fea8a3..2eb2e668 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -1,9 +1,11 @@
import type { Metadata } from "next";
import Image from "next/image";
+import Script from "next/script";
import { ArrowUpRight } from "lucide-react";
import { Button } from "@/components/ui";
import { CTASection } from "@/components/layouts";
import { pageSeo } from "@/lib/page-seo";
+import Tweet from "@/components/Tweet";
export const metadata: Metadata = pageSeo.about;
@@ -489,6 +491,69 @@ export default function AboutPage() {
+ {/* ── TWEETS ───────────────────────────────────────────────────────── */}
+
+
+
+ IMO all donors to the gitcoin matching pool deserve to get big
+ beautiful statues in the metaverse honoring their contributions.
+
+
+
+ Don't praise working for no money. This is not the spirit of{" "}
+
+ #opensource
+
+ .
+
+ Work should be paid, and work made in the open should even be paid
+ more.
+
+
+ Instead of perpetuating the legend of the poor opensource maintainer
+ let's find ways to sustainably fund{" "}
+
+ #opensource
+
+ .
+
+ ❤️{" "}
+
+ @gitcoin
+
+
+
+
+ I would love to see more non-speculative Ethereum apps take off
+ during this bear market.
+
+
+ So far the most popular ones I can think of (that have actual active
+ users) are Gitcoin, POAP and ENS.
+
+
+ What else is there?
+
+
+
+
+
{/* ── CTA ──────────────────────────────────────────────────────────── */}
+ {children}
+ — {author}{" "}
+ {date}
+
+ );
+}