Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/app/blog/page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default async function Blog() {
const posts = await listPosts();
return html`
<main id="main" tabindex="-1" class="${READING} py-12 focus:outline-none">
${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`<p class="text-fg-subtle italic">No posts yet.</p>`
Expand Down
1 change: 0 additions & 1 deletion website/app/changelog/page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export default async function Changelog() {
return html`
<main id="main" tabindex="-1" class="max-w-210 mx-auto px-6 py-12 focus:outline-none">
<header class="mb-10">
<p class="font-mono text-xs uppercase tracking-widest text-accent font-semibold mb-2">Changelog</p>
<h1 class="font-serif text-hub leading-[1.05] tracking-tight text-fg mb-3">What shipped</h1>
<p class="text-fg-muted text-sm leading-relaxed max-w-2xl">
Per-package, per-version release notes for <code class="font-mono text-sm bg-fg/8 px-1 py-0.5 rounded">@webjsdev/core</code>,
Expand Down
2 changes: 1 addition & 1 deletion website/app/compare/page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default async function Compare() {
const comparisons = await listComparisons();
return html`
<main id="main" tabindex="-1" class="${READING} py-12 focus:outline-none">
${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`<p class="text-fg-subtle italic">No comparisons yet.</p>`
Expand Down
Loading