Docs site (Next/Vercel migration) + interactive Next.js dependency explorer#152
Closed
jayhack wants to merge 196 commits into
Closed
Docs site (Next/Vercel migration) + interactive Next.js dependency explorer#152jayhack wants to merge 196 commits into
jayhack wants to merge 196 commits into
Conversation
Polish the migrated Next.js docs site with a tighter, shadcn-based layout on the Aura palette. Drop the stacked icon "eyebrow" chips on cards in favor of title-led, hairline-divided grids, condense section rhythm across the homepage, and clean up the MDX Card. Dark mode is the default with a working light-mode toggle; code surfaces stay Aura-dark in both. Uses system fonts throughout. Co-authored-by: Cursor <cursoragent@cursor.com>
# Conflicts: # site/app/docs/[[...slug]]/page.tsx # site/app/globals.css # site/content/docs/pages.ts
Add a /explore page that renders the Next.js framework core (packages/next/src) as a force-directed module dependency graph, parsed with the graph-sitter Rust backend. Includes a d3-force + canvas client component (Aura-themed, hover/drag/zoom, light & dark), a generator script that emits the module graph JSON, and a homepage nav link. Co-authored-by: Cursor <cursoragent@cursor.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Contributor
Author
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
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
Lands the migrated Vercel/Next.js docs site (in
site/) plus a newinteractive dependency-graph explorer, on top of the
rust-rewritebase.Important
This branch is based on
rust-rewrite, so the diff intodevelopincludesthe full rust-rewrite history (~196 commits). The net-new work specific to
this branch is the docs-site polish and the
/explorevisualization.Docs site
docs/at build time.Next.js dependency explorer (
/explore)packages/next/src), parsed with the graph-sitter Rust backend (~4.4s, 1,680 files / 16,003 symbols).d3-forcelayout + hand-rolled HTML5 canvas renderer (Aura-themed, hover/drag/zoom, dark & light), no heavy charting deps.site/scripts/gen-nextjs-depgraph.pyemitssite/lib/data/nextjs-depgraph.json(91 modules, 710 edges).Test plan
npm --prefix site run build(Node 22) succeeds — 305 static pages./docs,/, and/explorein dark and light.Made with Cursor