Skip to content

Add articles section to home dashboard#424

Merged
noahtigner merged 3 commits intomainfrom
copilot/add-articles-link-dashboard
Mar 6, 2026
Merged

Add articles section to home dashboard#424
noahtigner merged 3 commits intomainfrom
copilot/add-articles-link-dashboard

Conversation

Copy link
Contributor

Copilot AI commented Mar 6, 2026

The home page had no entry point to the /articles/ route, leaving it discoverable only via the top nav.

Changes

  • src/routes/Home.tsx — Adds an "Articles" section after Experience:
    • Divider heading consistent with existing page sections
    • 3 most-recent published articles rendered via the existing ArticleCard component, sorted by date descending, constrained to --size-md to match the articles page layout
    • "View all articles →" ButtonLinkInternal CTA linking to /articles/
const recentArticles = [...publishedArticles]
  .sort((a, b) => new Date(b.published).getTime() - new Date(a.published).getTime())
  .slice(0, 3);

Articles section on home dashboard


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Copilot AI changed the title [WIP] Add link to articles route from dashboard Add articles section to home dashboard Mar 6, 2026
@noahtigner noahtigner marked this pull request as ready for review March 6, 2026 04:33
@noahtigner noahtigner enabled auto-merge March 6, 2026 04:33
@noahtigner noahtigner merged commit 8614402 into main Mar 6, 2026
3 checks passed
@noahtigner noahtigner deleted the copilot/add-articles-link-dashboard branch March 6, 2026 04:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants