File size: 147 Bytes
c232e44
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { redirect } from 'next/navigation';

export interface PageProps {}

export default async function Page({}: PageProps) {
  redirect('/');
}