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.

`