Add contribution CTA to all listing pages (#850)

* Add contribution CTA to all listing/search pages

Add a reusable ContributeCTA component that encourages visitors to
contribute their own resources. The CTA appears at the bottom of every
resource listing page (agents, instructions, skills, hooks, workflows,
plugins, tools) with:

- Contextual text that adapts to the resource type
- 'Contribute yours' primary button linking to CONTRIBUTING.md
- 'Request a resource' outline button linking to new issue creation
- Gradient top bar matching existing card design patterns
- Responsive layout that stacks on mobile

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add Contribute button to page header on all listing pages

Place an outlined Contribute button in each page-header section so it's
immediately visible without scrolling. Uses accent purple border that
fills on hover with a glow effect. Stacks below description on mobile
via a 600px breakpoint.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add screenshots for contribution CTA PR

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* didn't mean to commit them

* Extract PageHeader component to deduplicate header markup

Address PR review feedback: the header Contribute link (URL, SVG icon,
classes) was duplicated across all 7 listing pages. Extract into a
reusable PageHeader.astro component that accepts title and description
props, with a slot for rich HTML descriptions (used by workflows page).

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Aaron Powell
2026-03-02 16:21:22 +11:00
committed by GitHub
parent 1f3192b2ad
commit 4cf83b0161
10 changed files with 205 additions and 42 deletions
+4 -6
View File
@@ -1,5 +1,7 @@
---
import BaseLayout from "../layouts/BaseLayout.astro";
import ContributeCTA from "../components/ContributeCTA.astro";
import PageHeader from "../components/PageHeader.astro";
---
<BaseLayout
@@ -8,12 +10,7 @@ import BaseLayout from "../layouts/BaseLayout.astro";
activeNav="tools"
>
<main id="main-content">
<div class="page-header">
<div class="container">
<h1>🔧 Tools</h1>
<p>MCP servers and developer tools for GitHub Copilot</p>
</div>
</div>
<PageHeader title="🔧 Tools" description="MCP servers and developer tools for GitHub Copilot" />
<div class="page-content">
<div class="container">
@@ -48,6 +45,7 @@ import BaseLayout from "../layouts/BaseLayout.astro";
experience. Check back soon!
</p>
</div>
<ContributeCTA resourceType="tools" />
</div>
</div>
</main>