From 6c36a493c759cec8f84ee2d73c0963ecd3eaf35b Mon Sep 17 00:00:00 2001 From: Inaki Fernandez Date: Thu, 25 Jun 2026 18:25:11 +0200 Subject: [PATCH] feat(v2): add Awesome Lists hero card on index + Portal Guide nav entry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - New "Awesome Lists" hero-badge card on the V2 index, right after "Get Started", linking to /other-awesome-lists/. - Custom gold-star + list-motif cover (docs/images/awesome-lists-cover.svg), matching the Awesome Lists page hero theme. - New .hero-badge-card--gold modifier. - Also list "Awesome Lists" under the Portal Guide top-bar menu (after Topic Map) for discoverability, in addition to the flagship "⭐ Awesome Lists" tab. - Card added to the index template (survives regeneration) and to the current rendered v2-docs/index.md for immediate deploy. Co-Authored-By: Claude Opus 4.8 (1M context) --- docs/images/awesome-lists-cover.svg | 42 +++++++++++++++++++++++++++++ docs/static/v2_elite.css | 11 ++++++++ src/v2_optimizer.py | 7 +++++ v2-docs/index.md | 7 +++++ v2-mkdocs.yml | 1 + 5 files changed, 68 insertions(+) create mode 100644 docs/images/awesome-lists-cover.svg diff --git a/docs/images/awesome-lists-cover.svg b/docs/images/awesome-lists-cover.svg new file mode 100644 index 00000000..33c47ba2 --- /dev/null +++ b/docs/images/awesome-lists-cover.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/static/v2_elite.css b/docs/static/v2_elite.css index 956d71a4..83713b83 100644 --- a/docs/static/v2_elite.css +++ b/docs/static/v2_elite.css @@ -426,6 +426,17 @@ a { border-color: #f59e0b !important; } +/* Gold: the flagship Awesome Lists card (matches the ⭐ Awesome Lists hero). */ +.hero-badge-card--gold { + border-color: rgba(251, 191, 36, 0.25); + background: rgba(251, 191, 36, 0.025); +} +.hero-badge-card--gold:hover { + background: rgba(251, 191, 36, 0.07) !important; + box-shadow: 0 8px 24px rgba(251, 191, 36, 0.22); + border-color: #fbbf24 !important; +} + .hero-badge-icon { /* Match the 100px logo box on the other hero cards so the emoji-based Intelligence Digest card is the same height. */ diff --git a/src/v2_optimizer.py b/src/v2_optimizer.py index 9eca0c8b..10df38e2 100644 --- a/src/v2_optimizer.py +++ b/src/v2_optimizer.py @@ -1362,6 +1362,13 @@ class V2VisionEngine: "
Introduction Guide
\n" " \n" " \n" + " \n" + "
\n" + " \"Awesome\n" + "
Awesome Lists
\n" + "
Curated awesome-* directory
\n" + "
\n" + "
\n" "\n\n" "!!! abstract \"The High-Density Vision\"\n" " The V2 Edition is a curated, high-density version of the Nubenetes archive. Using **Agentic AI Orchestration**, " diff --git a/v2-docs/index.md b/v2-docs/index.md index 19556b7f..63b752c3 100644 --- a/v2-docs/index.md +++ b/v2-docs/index.md @@ -69,6 +69,13 @@
Introduction Guide
+ +
+ Awesome Lists +
Awesome Lists
+
Curated awesome-* directory
+
+
!!! abstract "The High-Density Vision" diff --git a/v2-mkdocs.yml b/v2-mkdocs.yml index dddba8aa..893d1c5a 100644 --- a/v2-mkdocs.yml +++ b/v2-mkdocs.yml @@ -165,6 +165,7 @@ nav: - "⭐ Awesome Lists": other-awesome-lists.md - "Portal Guide": - "Topic Map": topic-map.md + - "Awesome Lists": other-awesome-lists.md - "Methodology": methodology.md - "Technical Tags": tags.md - "About": about.md