Add the pricing route and its tests

The pricing page 404s. Add the route, and a test that would have caught it.
Aug 7 04:41

The router has a table of paths and /pricing is missing from it — the page component exists and nothing points at it. I will add the route next to its neighbours and a test that walks the table rather than asserting one path, so the next missing route fails too.

Aug 7 04:41

Here is the change to src/routes.ts:

ts11 lines
export const ROUTES = {
  '/': Home,
  '/pricing': Pricing,
  '/download': Download,
} as const

// The test walks ROUTES instead of naming one path, so a route that
// exists as a component and never reaches this table still fails.
for (const path of Object.keys(ROUTES)) {
  expect(await GET(path)).toHaveStatus(200)
}
Aug 7 05:20
Next
Context
Unknown model
--
Context usage is unavailable for this session.
Account usage
Account quota is unavailable for this model provider.