From 209c6ef693d5665e8b71e247105bcdc6f80e30e7 Mon Sep 17 00:00:00 2001 From: GamerBoss101 Date: Sun, 13 Apr 2025 08:42:58 -0400 Subject: [PATCH] Web Page Update --- src/app/(app)/page.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/(app)/page.tsx b/src/app/(app)/page.tsx index 6e7c3da..ccc6cc1 100644 --- a/src/app/(app)/page.tsx +++ b/src/app/(app)/page.tsx @@ -136,6 +136,9 @@ function Mobile() { } function Web() { + + const { isAuthenticated, session } = useDevice(); + return (

- Welcome to Drink Happy! + {isAuthenticated ? `Welcome, ${session.username} !!` : ""}

);