diff --git a/client/src/app/page.tsx b/client/src/app/page.tsx index d22d6f24..3e2bd4d1 100644 --- a/client/src/app/page.tsx +++ b/client/src/app/page.tsx @@ -1,9 +1,11 @@ -import ComingSoon from "@/containers/coming-soon"; +import { redirect } from "next/navigation"; export default function Home() { - return ( -
- -
- ); + // Temporary redirect to explore page + redirect("/explore"); + // return ( + //
+ // + //
+ // ); }