From f7ca823d3cccfe34bcd5a15023906e59da5cd3e6 Mon Sep 17 00:00:00 2001 From: Soam Desai Date: Wed, 9 Sep 2026 22:37:16 -0700 Subject: [PATCH] docs(home): point World Tech links at the world-tech blog filter Docs 3.0 QA: 'Go to World Tech' now links to world.org/blog?blog_type=world-tech (both visibility twins), underlined per the design, and the World Tech Updates rows pick up the design's hairline dividers, 40px row padding, and 886px description measure. --- index.mdx | 4 ++-- tailwind.css | 14 +++++++++++--- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/index.mdx b/index.mdx index 3d7b152..8600698 100644 --- a/index.mdx +++ b/index.mdx @@ -123,7 +123,7 @@ import { DeveloperStories } from "/snippets/developer-stories.jsx";

The new World ID 4.0 upgrade introduces account abstraction with multi-key support, transforming a World ID from a single secret into an abstract record in a public registry. This increases protocol resilience by allowing the introduction of multiple key support, portability, recovery and improved privacy.

- + Go to World Tech @@ -200,5 +200,5 @@ import { DeveloperStories } from "/snippets/developer-stories.jsx"; - [World Chain launches full block access lists](https://world.org/blog/engineering/world-chain-full-block-access-lists) — World Chain now streams full EIP-7928 block access lists in every flashblock, enabling parallel block verification, faster validation, and a path toward gigagas-per-second throughput without increasing validator hardware requirements. - [Remainder: World's GKR prover for ML and more](https://world.org/blog/engineering/world-zkgpu-for-ml-and-more) — Remainder (Reasonable Machine Learning Doubly-Efficient Prover) is Tools for Humanity's open-sourced in-house GKR + Hyrax proof system. It enables World's users to run ML models locally over private data and prove that they executed them correctly. - [Introducing World ID 4.0 - Request for Comments](https://world.org/blog/engineering/introducing-world-id-4.0) — World ID 4.0 introduces account abstraction with multi-key support, transforming a World ID from a single secret into an abstract record in a public registry, improving resilience, portability, recovery and privacy. - - More at [World Tech](https://world.org/blog/engineering). + - More at [World Tech](https://world.org/blog?blog_type=world-tech). diff --git a/tailwind.css b/tailwind.css index d3bd1ae..587502a 100644 --- a/tailwind.css +++ b/tailwind.css @@ -188,12 +188,20 @@ background-color: rgb(32, 33, 36); } - /* Landing page — World Tech updates list (no divider rules, per design) */ + /* Landing page — World Tech updates list; rows separated by hairline rules + (above each row and below the last) per the Docs 3.0 QA design. */ .landing-update { display: block; - padding: 32px 0; + padding: 40px 0; + border-top: 1px solid #E1DFDA; text-decoration: none; } + .landing-update:last-child { + border-bottom: 1px solid #E1DFDA; + } + .dark .landing-update { + border-color: rgba(255, 255, 255, 0.12); + } .landing-update-title { font-size: 24px; line-height: 1.3; @@ -210,7 +218,7 @@ } .landing-update-desc { margin: 12px 0 0; - max-width: 1100px; + max-width: 886px; font-size: 16px; line-height: 1.5; font-weight: 300;