- 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.
6 lines
99 B
TypeScript
6 lines
99 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export default function Home() {
|
|
redirect("/tv");
|
|
}
|