Skip to content

Commit

Permalink
Temporary redirect homepage to explore page
Browse files Browse the repository at this point in the history
  • Loading branch information
atrincas committed Nov 13, 2024
1 parent 312b0e8 commit b2f9e43
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions client/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import ComingSoon from "@/containers/coming-soon";
import { redirect } from "next/navigation";

export default function Home() {
return (
<main className="min-h-screen bg-blue-900">
<ComingSoon />
</main>
);
// Temporary redirect to explore page
redirect("/explore");
// return (
// <main className="min-h-screen bg-blue-900">
// <ComingSoon />
// </main>
// );
}

0 comments on commit b2f9e43

Please sign in to comment.