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 apps/web/src/cache-headers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ describe('cacheHeadersMiddleware', () => {
const mw = cacheHeadersMiddleware()
const c = ctx('GET', new Response('placeholder'))
const next = async () => {
c.res = new Response(null, { status: 301, headers: { Location: '/demos#hash' } })
c.res = new Response(null, { status: 301, headers: { Location: '/concepts#hash' } })
}

await mw(c, next)
Expand Down
8 changes: 4 additions & 4 deletions apps/web/src/components/demos-tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ const TABS: Tab[] = [
blurb: 'Content-defined chunking ships and verifies only the parts of a file that changed.',
body: (
<>
mkit cuts big files into content-defined chunks (FastCDC), ships only the chunks that changed, and verifies each
one as it arrives. git re-stores the whole binary on every edit. Watch the auto-editor run, or drop in your own
large file.
mkit cuts big files into content-defined chunks (FastCDC) and verifies each one against a Bao root as it arrives
— corruption is caught mid-stream and re-fetched, not discovered after the download. Watch the file stream in
verified, or corrupt the connection and see the verifier catch it.
</>
),
Demo: StreamingDemo,
Expand Down Expand Up @@ -177,7 +177,7 @@ export function DemosTabs() {
the active tab (wrapping around). Switches tabs in place rather than
navigating away. */}
<section className='space-y-4 pt-8'>
<h2 className='text-xl font-semibold tracking-tight'>More demos to explore</h2>
<h2 className='text-xl font-semibold tracking-tight'>More concepts to explore</h2>
<ul className='grid gap-4 sm:grid-cols-3'>
{upNext.map((t) => (
<li key={t.id}>
Expand Down
4 changes: 2 additions & 2 deletions apps/web/src/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import { Link } from 'waku'
import { GridLogo } from './grid-logo'
import { ThemeToggle } from './theme-toggle'

// Top-nav order: the combined demos playground first (it now folds in the
// Top-nav order: the combined concepts playground first (it now folds in the
// tree and push walkthroughs as tabs), then the doc-style pages
// (performance, parity, specs), then the live multiplayer room. Reordering
// the site nav is editing this list — nothing else.
const NAV_LINKS = [
{ to: '/demos', label: 'demos' },
{ to: '/concepts', label: 'concepts' },
{ to: '/performance', label: 'performance' },
{ to: '/parity', label: 'parity' },
{ to: '/specs', label: 'specs' },
Expand Down
Loading
Loading