Skip to content

Commit 51f44d0

Browse files
authored
feat: enhance Manifesto component (#971)
* feat: enhance Manifesto component * fix: remove console log from fetchData in Manifesto component
1 parent 9221498 commit 51f44d0

File tree

1 file changed

+25
-2
lines changed

1 file changed

+25
-2
lines changed

website/src/components/about/index.tsx

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ export function Manifesto() {
227227
Angel Investors
228228
</h2>
229229

230-
<div className="grid grid-cols-2 place-items-center gap-6 sm:gap-8 md:gap-12 max-w-3xl mx-auto mt-6">
230+
<div className="grid grid-cols-2 md:grid-cols-3 place-items-center gap-6 sm:gap-8 md:gap-12 max-w-3xl mx-auto mt-6">
231231
{/* Static angel investors, no loading needed */}
232232
<div className="flex flex-col items-center text-center">
233233
<div className="w-32 h-32 sm:w-40 sm:h-40 md:w-48 md:h-48 rounded-full overflow-hidden mb-4 border-2 border-main-emerald/40">
@@ -292,6 +292,29 @@ export function Manifesto() {
292292
</a>
293293
</div>
294294
</div>
295+
296+
<div className="flex flex-col items-center text-center">
297+
<div className="w-32 h-32 sm:w-40 sm:h-40 md:w-48 md:h-48 rounded-full overflow-hidden mb-4 border-2 border-main-emerald/40">
298+
<img
299+
src="https://cdn.voltagent.dev/website/team/berkay.jpeg"
300+
alt="Berkay Mollamustafaoglu"
301+
className="w-full h-full object-cover"
302+
/>
303+
</div>
304+
<span className="text-white font-medium text-lg">Berkay Mollamustafaoglu</span>
305+
<p className="text-main-emerald text-sm mt-1">CEO at Actioner</p>
306+
<div className="flex space-x-3 mt-0">
307+
<a
308+
href="https://www.linkedin.com/in/berkay/"
309+
target="_blank"
310+
rel="noopener noreferrer nofollow"
311+
className="text-gray-400 hover:text-main-emerald transition-colors"
312+
aria-label="LinkedIn Profile"
313+
>
314+
<LinkedInLogo className="w-5 h-5" />
315+
</a>
316+
</div>
317+
</div>
295318
</div>
296319
</div>
297320

@@ -318,7 +341,7 @@ export function Manifesto() {
318341
<SkeletonText width="60%" height="0.75rem" />
319342
</div>
320343
))
321-
: contributors?.slice(3).map((contributor) => (
344+
: contributors?.map((contributor) => (
322345
<a
323346
key={contributor.login}
324347
href={contributor.html_url}

0 commit comments

Comments
 (0)