- Set up Next.js 16 with TypeScript and App Router - Configure Tailwind CSS for styling - Add ESLint and Prettier for code quality - Set up Jest and React Testing Library - Create basic project structure (app/, components/, lib/) - Add initial home page with WellNuo branding - Configure TypeScript with strict mode - All tests passing and linting clean 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
501 B
TypeScript
13 lines
501 B
TypeScript
export default function Home() {
|
|
return (
|
|
<div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]">
|
|
<main className="flex flex-col gap-8 row-start-2 items-center sm:items-start">
|
|
<h1 className="text-4xl font-bold">WellNuo Web</h1>
|
|
<p className="text-lg text-center sm:text-left">
|
|
Health monitoring for loved ones
|
|
</p>
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|