From 1c12d378d66b92b1674acd17640f2bac752da289 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Tue, 25 Mar 2025 14:13:06 -0400 Subject: Converted public dashboard to admin dashboard; Made API have a consistent output message --- web/src/app/page.js | 42 ++++++++++++++++++++++++++++-------------- 1 file changed, 28 insertions(+), 14 deletions(-) (limited to 'web/src/app/page.js') diff --git a/web/src/app/page.js b/web/src/app/page.js index 76e5d27..99556e8 100644 --- a/web/src/app/page.js +++ b/web/src/app/page.js @@ -1,19 +1,33 @@ -import { redirect } from "next/navigation"; -import { auth } from "@/lib/auth"; +export default function Home() { -export default async function Home() { - const session = await auth(); - if (session) redirect("/dashboard"); - return ( - <> -
-
- - - - + return ( +
+

AleeBot

+ + + + +
- ); } -- cgit v1.2.3