- Added package.json with dependencies and scripts for development, build, and linting. - Created postcss.config.mjs for Tailwind CSS integration. - Added SVG assets for UI components including file, globe, next, vercel, and window icons. - Configured TypeScript with tsconfig.json for strict type checking and module resolution.
9 lines
320 B
TypeScript
9 lines
320 B
TypeScript
export default function DashboardPage() {
|
|
return (
|
|
<div className="flex flex-1 flex-col items-center justify-center gap-4 p-8">
|
|
<h1 className="text-2xl font-semibold tracking-tight">Dashboard</h1>
|
|
<p className="text-sm text-zinc-500">Channel management and user settings go here.</p>
|
|
</div>
|
|
);
|
|
}
|