Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/app/insights/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const FALLBACK_CARDS = {
body: 'Papers and articles advancing the frontiers of decentralized systems, cryptography, and more.',
},
'card-talks': {
title: 'Talks',
title: 'Talks & Podcasts',
body: 'Presentations and lectures from conferences and events around the world.',
},
'card-blog': {
Expand Down Expand Up @@ -59,18 +59,18 @@ export default async function InsightsPage() {
{/* Subpages */}
<div className="mb-16">
<div className="grid grid-cols-1 md:grid-cols-3 gap-6">
<InsightCard
href="/publications/"
title={cardPublications?.title || FALLBACK_CARDS['card-publications'].title}
description={cardPublications?.body || FALLBACK_CARDS['card-publications'].body}
count={publications.length}
/>
<InsightCard
href="/talks/"
title={cardTalks?.title || FALLBACK_CARDS['card-talks'].title}
description={cardTalks?.body || FALLBACK_CARDS['card-talks'].body}
count={talks.length}
/>
<InsightCard
href="/publications/"
title={cardPublications?.title || FALLBACK_CARDS['card-publications'].title}
description={cardPublications?.body || FALLBACK_CARDS['card-publications'].body}
count={publications.length}
/>
<InsightCard
href="/blog/"
title={cardBlog?.title || FALLBACK_CARDS['card-blog'].title}
Expand Down