From 01dc124cc902ff6675e34d898743dcd5f27da1af Mon Sep 17 00:00:00 2001 From: Necati Ozmen Date: Mon, 19 Jan 2026 17:04:02 +0300 Subject: [PATCH 1/2] feat: enhance Manifesto component --- website/src/components/about/index.tsx | 28 ++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/website/src/components/about/index.tsx b/website/src/components/about/index.tsx index 9c97007c7..1cdc75ee4 100644 --- a/website/src/components/about/index.tsx +++ b/website/src/components/about/index.tsx @@ -71,6 +71,7 @@ export function Manifesto() { const contributorsData = await contributorsResponse.json(); const loveData = await loveResponse.json(); + console.log(contributorsData, loveData); setContributors(contributorsData.contributors); setStars(loveData.stars); @@ -227,7 +228,7 @@ export function Manifesto() { Angel Investors -
+
{/* Static angel investors, no loading needed */}
@@ -292,6 +293,29 @@ export function Manifesto() {
+ +
+
+ Berkay Mollamustafaoglu +
+ Berkay Mollamustafaoglu +

CEO at Actioner

+
+ + + +
+
@@ -318,7 +342,7 @@ export function Manifesto() { )) - : contributors?.slice(3).map((contributor) => ( + : contributors?.map((contributor) => ( Date: Tue, 20 Jan 2026 15:08:35 +0300 Subject: [PATCH 2/2] fix: remove console log from fetchData in Manifesto component --- website/src/components/about/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/website/src/components/about/index.tsx b/website/src/components/about/index.tsx index 1cdc75ee4..929b39640 100644 --- a/website/src/components/about/index.tsx +++ b/website/src/components/about/index.tsx @@ -71,7 +71,6 @@ export function Manifesto() { const contributorsData = await contributorsResponse.json(); const loveData = await loveResponse.json(); - console.log(contributorsData, loveData); setContributors(contributorsData.contributors); setStars(loveData.stars);