Skip to content
Merged
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
21 changes: 21 additions & 0 deletions docs/src/components/CustomFooter.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ const heartIcon = octicons.heart.toSVG({ width: 14, height: 14 });
<div class="community-feedback">
<a href="https://github.com/orgs/community/discussions/186451" target="_blank" rel="noopener noreferrer">Community Feedback</a>
</div>

<div class="agent-links">
<a href="https://github.github.com/gh-aw/llms.txt">llms.txt</a>
<span class="legal-separator" aria-hidden="true">·</span>
<a href="https://raw.githubusercontent.com/github/gh-aw/main/create.md">Create Workflow</a>
<span class="legal-separator" aria-hidden="true">·</span>
<a href="https://raw.githubusercontent.com/github/gh-aw/main/install.md">Install</a>
<span class="legal-separator" aria-hidden="true">·</span>
<a href="https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/github-agentic-workflows.md">Reference</a>
Comment on lines +16 to +22
Copy link

Copilot AI Feb 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The new agent links navigate to external resources (including raw.githubusercontent.com) but don’t include target="_blank"/rel="noopener noreferrer", unlike the other footer links in this component (e.g., Community Feedback and Terms/Privacy/Security). For consistency and to avoid taking users away from the docs site, consider adding the same attributes to these anchors (or intentionally make them same-tab and update the rest to match).

Suggested change
<a href="https://github.github.com/gh-aw/llms.txt">llms.txt</a>
<span class="legal-separator" aria-hidden="true">·</span>
<a href="https://raw.githubusercontent.com/github/gh-aw/main/create.md">Create Workflow</a>
<span class="legal-separator" aria-hidden="true">·</span>
<a href="https://raw.githubusercontent.com/github/gh-aw/main/install.md">Install</a>
<span class="legal-separator" aria-hidden="true">·</span>
<a href="https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/github-agentic-workflows.md">Reference</a>
<a href="https://github.github.com/gh-aw/llms.txt" target="_blank" rel="noopener noreferrer">llms.txt</a>
<span class="legal-separator" aria-hidden="true">·</span>
<a href="https://raw.githubusercontent.com/github/gh-aw/main/create.md" target="_blank" rel="noopener noreferrer">Create Workflow</a>
<span class="legal-separator" aria-hidden="true">·</span>
<a href="https://raw.githubusercontent.com/github/gh-aw/main/install.md" target="_blank" rel="noopener noreferrer">Install</a>
<span class="legal-separator" aria-hidden="true">·</span>
<a href="https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/github-agentic-workflows.md" target="_blank" rel="noopener noreferrer">Reference</a>

Copilot uses AI. Check for mistakes.
</div>
<p>
<span class="footer-main">
Made with <span class="heart-icon" set:html={heartIcon} /> by <a href="https://githubnext.com/" target="_blank" rel="noopener noreferrer">GitHub Next</a> & <a href="https://www.microsoft.com/en-us/research/" target="_blank" rel="noopener noreferrer">Microsoft Research</a>
Expand Down Expand Up @@ -47,6 +57,17 @@ const heartIcon = octicons.heart.toSVG({ width: 14, height: 14 });
font-size: 0.875rem;
}

.agent-links {
margin-bottom: 1rem;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
flex-wrap: wrap;
font-size: 0.875rem;
}

.github-next-footer p {
margin: 0;
font-size: 0.875rem;
Expand Down