From ccbbfa8ec26a5ff78f2e2b45ed7bc374574ec954 Mon Sep 17 00:00:00 2001 From: GamerBoss101 Date: Sat, 29 Mar 2025 18:43:55 -0400 Subject: [PATCH] Button Styles --- React/src/app/page.tsx | 67 ++++++++++++++++++++++++++---------------- 1 file changed, 41 insertions(+), 26 deletions(-) diff --git a/React/src/app/page.tsx b/React/src/app/page.tsx index e2f6430..4f93321 100644 --- a/React/src/app/page.tsx +++ b/React/src/app/page.tsx @@ -11,23 +11,44 @@ export default async function Home() { console.log("Session:", session?.user); // If no session, show sign-up and login buttons - if (!session) { - + if (!session) { return (
-
- - - - - - +
+ + + +
+
+ ); + } + + return ( +
+
+

Welcome, {session.user.name}!

+

fauxcall

set emergency contacts

-

if you stop speaking or say the codeword, these contacts will be notified

+

+ if you stop speaking or say the codeword, these contacts will be + notified +

{/* form for setting codeword */} -
e.preventDefault()}> + e.preventDefault()} + > + className="bg-blue-500 text-white rounded-md p-2" + type="submit" + > + Set codeword +
{/* form for adding contacts */} -
e.preventDefault()}> + e.preventDefault()} + >
-
- ); - } - return ( -
-
-

Welcome, {session.user.name}!

-

- - - -

);