fix: mirror wrap-your-agent footer structure on key public pages#239
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
public/api.htmlandpublic/schemas.htmlwere rendering a cramped inline footer because the previous update only changed link text, not the footer structure/CSS; the goal is to make the footer on the listed pages visually and structurally matchpublic/docs/wrap-your-agent.html.Description
public/docs/wrap-your-agent.htmland inserted it into each target page; exact HTML copied:<footer><div class="container footer-grid"><div><h4>Product</h4><a href="/protocol.html">Protocol</a><a href="/capabilities.html">Capabilities</a><a href="/verify.html">Verifier</a><a href="/runtime.html">Runtime</a><a href="/mcp.html">MCP</a><a href="/claim.html">Claim</a></div><div><h4>Developers</h4><a href="/docs.html">Docs</a><a href="/sdk-records.html">SDK</a><a href="/schemas.html">Schemas</a><a href="/api.html">API</a><a href="https://github.com/commandlayer" target="_blank" rel="noopener">GitHub</a></div><div><h4>Proof</h4><a href="/stack-proof-demo.html">Production Proof</a><a href="/verifyagent.html">VerifyAgent</a><a href="/trust-verification.html">Trust Verification</a><a href="/canonical-receipts.html">Canonical Receipts</a></div></div></footer>.footer{border-top:1px solid var(--border);background:#fff}.footer-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;padding:36px 0}.footer-grid h4{font-size:14px;margin-bottom:10px}.footer-grid a{display:block;color:var(--text-2);margin:8px 0;font-size:14px}.target="_blank" rel="noopener"as in the canonical source; removed reliance on inline/compact link layouts so groups render as separate columns.public/claim.html,public/protocol.html,public/verify.html,public/sdk-records.html,public/trust-verification.html,public/api.html,public/schemas.html.Testing
npm installwhich completed successfully and then rannpm test, with all tests passing (26tests passed, no failures).npm run buildbut the repository has nobuildscript defined, so that step is not applicable (non-blocking).public/claim.html,public/protocol.html,public/verify.html,public/sdk-records.html,public/trust-verification.html,public/api.html,public/schemas.html— for each page: footer uses the same wrapper/container classes aswrap-your-agent, footer links have block spacing, footer groups render as separate columns, and no inline-cramped footer text remains.Codex Task