feat(auth): implement login page and authentication middleware feat(sidebar): create sidebar component with user info and navigation links feat(api): establish API client for interacting with backend services
6 lines
104 B
TypeScript
6 lines
104 B
TypeScript
import { redirect } from 'next/navigation'
|
|
|
|
export default function Home() {
|
|
redirect('/dashboard')
|
|
}
|