mirror of
https://github.com/Sosokker/go-chi-oapi-codegen-todolist.git
synced 2025-12-19 05:54:07 +01:00
8 lines
192 B
TypeScript
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")
|
|
}
|