go-chi-oapi-codegen-todolist/frontend/app/page.tsx
2025-04-20 15:58:52 +07:00

8 lines
192 B
TypeScript

import { redirect } from "next/navigation"
export default function Home() {
// In a real app, we'd check auth status server-side
// For now, just redirect to todos
redirect("/todos")
}