aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/app/page.tsx')
-rw-r--r--apps/web/app/page.tsx7
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/web/app/page.tsx b/apps/web/app/page.tsx
index ca076cbf..d86c91be 100644
--- a/apps/web/app/page.tsx
+++ b/apps/web/app/page.tsx
@@ -1,12 +1,13 @@
import { redirect } from "next/navigation";
+import LandingPage from "@/components/landing/LandingPage";
import { getServerAuthSession } from "@/server/auth";
export default async function Home() {
// TODO: Home currently just redirects between pages until we build a proper landing page
const session = await getServerAuthSession();
- if (!session) {
- redirect("/signin");
+ if (session) {
+ redirect("/dashboard/bookmarks");
}
- redirect("/dashboard/bookmarks");
+ return <LandingPage />;
}