From b08ae68f70606667613a1ccb25236a6ba0413758 Mon Sep 17 00:00:00 2001 From: Vivek Date: Tue, 1 Sep 2026 18:03:20 +0530 Subject: [PATCH] fix(website): drop the eyebrow label on blog, compare and changelog The uppercase section label above each h1 restated the nav item the reader just clicked, so it added nothing over the page title. --- website/app/blog/page.ts | 2 +- website/app/changelog/page.ts | 1 - website/app/compare/page.ts | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/website/app/blog/page.ts b/website/app/blog/page.ts index 72f20f53a..f64892d0c 100644 --- a/website/app/blog/page.ts +++ b/website/app/blog/page.ts @@ -20,7 +20,7 @@ export default async function Blog() { const posts = await listPosts(); return html`
- ${pageHeader('Notes from building webjs', 'Posts on the design decisions, the trade-offs, the things that did not work, and what the framework looks like in production.', 'Blog')} + ${pageHeader('Notes from building webjs', 'Posts on the design decisions, the trade-offs, the things that did not work, and what the framework looks like in production.')} ${posts.length === 0 ? html`

No posts yet.

` diff --git a/website/app/changelog/page.ts b/website/app/changelog/page.ts index 582897235..48a112fe6 100644 --- a/website/app/changelog/page.ts +++ b/website/app/changelog/page.ts @@ -21,7 +21,6 @@ export default async function Changelog() { return html`
-

Changelog

What shipped

Per-package, per-version release notes for @webjsdev/core, diff --git a/website/app/compare/page.ts b/website/app/compare/page.ts index 132a67ed9..f545cef80 100644 --- a/website/app/compare/page.ts +++ b/website/app/compare/page.ts @@ -21,7 +21,7 @@ export default async function Compare() { const comparisons = await listComparisons(); return html`

- ${pageHeader('How WebJs compares', 'Honest head-to-head write-ups: where WebJs agrees with each framework, where it genuinely differs, and who should pick which. No trashing the alternative, and each one says where the other tool is the better call.', 'Compare')} + ${pageHeader('How WebJs compares', 'Honest head-to-head write-ups: where WebJs agrees with each framework, where it genuinely differs, and who should pick which. No trashing the alternative, and each one says where the other tool is the better call.')} ${comparisons.length === 0 ? html`

No comparisons yet.

`