🤖 Custom Agents
-Specialized agents that enhance GitHub Copilot for specific technologies, workflows, and domains
-diff --git a/website/public/styles/global.css b/website/public/styles/global.css index 3029280b..671eff26 100644 --- a/website/public/styles/global.css +++ b/website/public/styles/global.css @@ -1076,6 +1076,49 @@ a:hover { color: var(--color-text-muted); } +.page-header-row { + display: flex; + align-items: flex-start; + justify-content: space-between; + gap: 24px; +} + +.page-header-row > div:first-child { + flex: 1; + min-width: 0; +} + +.page-header .contribute-link { + display: inline-flex; + align-items: center; + gap: 6px; + margin-top: 6px; + padding: 8px 16px; + font-size: 14px; + font-weight: 600; + color: var(--color-accent); + border: 1px solid var(--color-accent); + border-radius: var(--border-radius); + text-decoration: none; + white-space: nowrap; + transition: var(--transition); + flex-shrink: 0; +} + +.page-header .contribute-link:hover { + background: var(--color-accent); + color: #fff; + box-shadow: var(--shadow-glow); + transform: translateY(-1px); +} + +@media (max-width: 600px) { + .page-header-row { + flex-direction: column; + gap: 16px; + } +} + .page-content { padding: 40px 0 80px; } diff --git a/website/src/components/ContributeCTA.astro b/website/src/components/ContributeCTA.astro new file mode 100644 index 00000000..70078f29 --- /dev/null +++ b/website/src/components/ContributeCTA.astro @@ -0,0 +1,108 @@ +--- +interface Props { + resourceType: string; +} + +const { resourceType } = Astro.props; +const contributingUrl = 'https://github.com/github/awesome-copilot/blob/main/CONTRIBUTING.md'; +const newIssueUrl = 'https://github.com/github/awesome-copilot/issues/new'; +--- + + + + diff --git a/website/src/components/PageHeader.astro b/website/src/components/PageHeader.astro new file mode 100644 index 00000000..fce8e21f --- /dev/null +++ b/website/src/components/PageHeader.astro @@ -0,0 +1,24 @@ +--- +interface Props { + title: string; + description: string; +} + +const { title, description } = Astro.props; +const contributingUrl = 'https://github.com/github/awesome-copilot/blob/main/CONTRIBUTING.md'; +--- + +
Specialized agents that enhance GitHub Copilot for specific technologies, workflows, and domains
-Automated workflows triggered by Copilot coding agent events
-Coding standards and best practices for GitHub Copilot
-Curated plugins of agents, hooks, and skills for specific workflows
-Self-contained agent skills with instructions and bundled resources
-MCP servers and developer tools for GitHub Copilot
-AI-powered repository automations that run coding agents in GitHub Actions
-