feat(seo): bilingual how-to guides section#17
Merged
Conversation
Adds a /guides hub plus 4 how-to guides (EN + IT) targeting informational search intent and funneling to the matching client-side tool: - How to decode an SSL certificate -> Certificate Decoder - How to read a CSR -> CSR Decoder - How to check a private key matches a certificate -> Key Matcher - How to build a certificate chain -> Chain Builder Content lives in structured TS data (no MDX), rendered through the existing Layout so it stays inside the strict CSP (no inline scripts, no network). Routes for EN (/guides/...) and IT (/it/guides/...), sitemap updated, and a Guides link added to the header. Full hardened build passes: check-no-innerhtml, astro build, inject-csp (26 HTML files), check-no-network — all green. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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.
Adds a /guides hub plus 4 how-to guides (EN + IT) that target informational search intent and funnel to the matching client-side tool:
How it fits the codebase
src/data/guides.ts) — no MDX, no new deps — rendered through the existingLayout, so it stays inside the strict CSP (no inline scripts, no network) and the typed i18n./guides/…, IT/it/guides/…(via[lang]);sitemap.xml.tsupdated; a Guides link added to the header (localized).Build
Full hardened pipeline green:
check-no-innerhtml→astro build→inject-csp(26 HTML files, 38 hashes) →check-no-network(no egress). hreflang/CSP/sitemap verified in output.Completes the Tier-1 SEO set (main site: SSL errors, deploy guides, comparison; tools: how-to guides).
Generated with Claude Code.