aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/(landing)
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/app/(landing)')
-rw-r--r--apps/web/app/(landing)/package.json5
-rw-r--r--apps/web/app/(landing)/page.tsx4
2 files changed, 2 insertions, 7 deletions
diff --git a/apps/web/app/(landing)/package.json b/apps/web/app/(landing)/package.json
deleted file mode 100644
index a7fabf2f..00000000
--- a/apps/web/app/(landing)/package.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "scripts": {
- "vercel-build": "next build"
- }
-}
diff --git a/apps/web/app/(landing)/page.tsx b/apps/web/app/(landing)/page.tsx
index 562e9af9..5f8b28b4 100644
--- a/apps/web/app/(landing)/page.tsx
+++ b/apps/web/app/(landing)/page.tsx
@@ -5,7 +5,7 @@ import Cta from "./Cta";
import { Toaster } from "@repo/ui/shadcn/toaster";
import Features from "./Features";
import Footer from "./footer";
-import { auth } from "../helpers/server/auth";
+import { auth } from "../../server/auth";
import { redirect } from "next/navigation";
export const runtime = "edge";
@@ -16,7 +16,7 @@ export default async function Home() {
console.log(user);
if (user) {
- // await redirect("/home")
+ await redirect("/home");
}
return (