diff --git a/src/app/(app)/page.tsx b/src/app/(app)/page.tsx index f52906d..19507db 100644 --- a/src/app/(app)/page.tsx +++ b/src/app/(app)/page.tsx @@ -8,8 +8,24 @@ function Mobile() { return (

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

+ {isAuthenticated ? ( +
+ +
+ ) : ( +
+ + +
+ )}
); }