vision-agent / app /page.tsx
MingruiZhang's picture
Larger layout / allow logout user to upload / move image to chat box (#13)
38448fc unverified
raw history blame
No virus
327 Bytes
import { auth } from '@/auth';
import { redirect } from 'next/navigation';
export default async function Page() {
redirect('/chat');
// return (
// <div className="flex flex-col h-[calc(100vh-theme(spacing.16))] items-center justify-center py-10 space-y-2">
// Welcome to Insight Playground
// </div>
// );
}