Next.js 15 + React 19, Tailwind v4, shadcn/ui (button, card, input, dialog), postcss config, standalone output. ESLint extended with next/core-web-vitals via eslint-config-next flat export. node-linker=hoisted in .npmrc to allow standalone builds on Windows (symlink restriction). next-env.d.ts added to .gitignore. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
272 B
TypeScript
9 lines
272 B
TypeScript
export default function Page() {
|
|
return (
|
|
<main className="flex min-h-screen flex-col items-center justify-center p-8">
|
|
<h1 className="text-4xl font-bold">famapp</h1>
|
|
<p className="mt-4 text-muted-foreground">Dashboard coming soon</p>
|
|
</main>
|
|
);
|
|
}
|