9563b87c81
- Created Next.js 16.2.6 project with App Router, src/ directory, TypeScript strict mode - Configured Tailwind CSS v4 with postcss.config.mjs - Simplified src/app/page.tsx to Welcome to ClientHub placeholder - Updated layout.tsx with ClientHub metadata, Italian lang, viewport export (Next.js 16 API) - Added .gitignore covering node_modules, .env*, .next/, build artifacts Note: create-next-app installed Next.js 16.2.6 (latest stable) instead of 15.x — fully compatible upgrade
6 lines
117 B
TypeScript
6 lines
117 B
TypeScript
export default function Home() {
|
|
return (
|
|
<div className="text-center py-20">Welcome to ClientHub</div>
|
|
);
|
|
}
|