diff --git a/site/src/components/Header.astro b/site/src/components/Header.astro index b99cfb0b..e43baeb1 100644 --- a/site/src/components/Header.astro +++ b/site/src/components/Header.astro @@ -64,77 +64,49 @@ function active(match?: string) { - -
-
- -
- -
- -
-
-
The platform
-
{products.length} systems
-
-
    - {products.map((it, i) => { - const isCurrent = path === it.href || path.startsWith(it.href); - return ( -
  1. - - {String(i + 1).padStart(2, '0')} - - {it.title} - {it.tag} - - {isCurrent - ? - : - } - -
  2. - ); - })} -
-
- - -
-
From the handbook
- - -
- - Essential read -
-

- The deliverability handbook. -

-

- Authentication, warmup, volume, reputation. The full mental model in eight chapters. -

-
- 14 min · 8 chapters - - Read - - -
-
+ +
+
+ +
+ +
+
Choose a product
+
{products.length}
- -
- - github.com/warmbly/warmbly - - /pricing → + +
+ {products.map((it) => { + const isCurrent = path === it.href || path.startsWith(it.href); + return ( + +
+ {it.title} + {it.tag} +
+ {isCurrent + ? + : + } +
+ ); + })}