import { redirect } from 'next/navigation';

export interface PageProps {}

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