Introduces a localStorage-backed messy-desktop challenge with sub-steps, drag-and-drop and Places/Back navigation, IBM Plex Mono, and a /api/health endpoint. Adds Vitest coverage for the API and level logic plus Playwright smoke tests. Made-with: Cursor
10 lines
167 B
TypeScript
10 lines
167 B
TypeScript
import { HomeHub } from "./home-hub";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="min-h-screen px-6 py-16">
|
|
<HomeHub />
|
|
</main>
|
|
);
|
|
}
|