aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/page.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-19 19:24:29 +0000
committerMohamedBassem <me@mbassem.com>2024-03-19 19:24:29 +0000
commit2c03ee104d06e1be712356efa06a8b3cbe2d09dc (patch)
treee11fee36ae95dfc9255e42054b55b048973a2448 /apps/web/app/page.tsx
parenteed65a424630be5e7d673c6ac3f19b72b2d79dc7 (diff)
downloadkarakeep-2c03ee104d06e1be712356efa06a8b3cbe2d09dc.tar.zst
refactor: Move landing page to its own app to deploy it separately
Diffstat (limited to 'apps/web/app/page.tsx')
-rw-r--r--apps/web/app/page.tsx6
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/web/app/page.tsx b/apps/web/app/page.tsx
index d86c91be..c5d57e8a 100644
--- a/apps/web/app/page.tsx
+++ b/apps/web/app/page.tsx
@@ -1,13 +1,11 @@
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("/dashboard/bookmarks");
+ } else {
+ redirect("/signin");
}
-
- return <LandingPage />;
}