aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--apps/landing/app/page.tsx (renamed from apps/web/components/landing/LandingPage.tsx)5
-rw-r--r--apps/web/app/page.tsx6
2 files changed, 4 insertions, 7 deletions
diff --git a/apps/web/components/landing/LandingPage.tsx b/apps/landing/app/page.tsx
index cf8e8abd..d87962bb 100644
--- a/apps/web/components/landing/LandingPage.tsx
+++ b/apps/landing/app/page.tsx
@@ -1,11 +1,10 @@
import Image from "next/image";
import Link from "next/link";
+import { Button, buttonVariants } from "@/components/ui/button";
import { cn } from "@/lib/utils";
-import screenshot from "@/public/landing/screenshot.png";
+import screenshot from "@/public/screenshot.png";
import { ExternalLink, Github, PackageOpen } from "lucide-react";
-import { Button, buttonVariants } from "../ui/button";
-
const GITHUB_LINK = "https://github.com/MohamedBassem/hoarder-app";
function NavBar() {
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 />;
}