looood / src /app /page.tsx
looda3131's picture
Clean push without any binary history
cc276cc
'use client';
import { AuthWrapper } from '@/components/auth-wrapper';
import { Suspense } from 'react';
export default function Home() {
return (
<Suspense fallback={<div>Loading...</div>}>
<AuthWrapper />
</Suspense>
);
}