feat: AI-agent landing section + SEO blog#328
Merged
Conversation
Landing: new "Connect your AI agent" section at the top of the homepage with the downloadable skill, an animated typing prompt, and copy that makes clear the agent reads/drafts but never signs — keys and signatures stay with the co-signers. Blog: markdown-based SEO blog at /blog with two starter posts (AI-agent skill, Cardano multisig basics). Per-post <head> is server-rendered (title, canonical, og:type=article, Article JSON-LD) by returning a resolved seo via pageProps, which _app renders outside the ssr:false boundary; posts are listed in the sitemap with lastmod. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
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.
Summary
Two related additions to the public site, behind one push.
1. "Connect your AI agent" landing section
A new section at the top of the homepage promoting the downloadable multisig skill:
Typewritercomponent (SSR-safe, honorsprefers-reduced-motion).2. SEO blog at
/blogMarkdown-based blog with two starter posts:
Wired into the existing SEO surface (
src/lib/seo.ts):<head>: each post supplies a resolvedseoviapageProps, which_app.tsxrenders outside thessr:falseboundary → real per-post<title>, description, canonical,og:type=article, and Article JSON-LD. (Metatagsgainedimage/type/extraJsonLd.)/sitemap.xmlwith<lastmod>;/blogadded toINDEXABLE_ROUTES.src/content/blog/*.md, read by a server-only data layer (src/lib/blog.ts) with a tiny front-matter parser — no new dependencies (react-markdown/remark-gfmwere already present).Verification
tsc --noEmitclean (the pre-existing, unrelatedgovernance.tsPrisma errors aside).next build --webpack) succeeds;/blogand/blog/[slug]compile.next startand confirmed:/blog→ 200, both posts → 200 with correct per-post SSR'd titles +og:type=article+ canonical, unknown slug → 404, sitemap lists both posts, no server errors.Notes
MeshProviderNoSSR/ssr:false); the SEO-critical<head>is server-rendered. Full body SSR would need a provider-boundary change — happy to do that as a follow-up if wanted..claude/launch.json) was intentionally not included.🤖 Generated with Claude Code