From 3361d0451f88d7bbe1a241b09f5cc013c2abf8f7 Mon Sep 17 00:00:00 2001 From: snekd Date: Sat, 12 Apr 2025 16:45:00 -0400 Subject: [PATCH] button more --- src/app/(app)/layout.tsx | 2 +- src/app/(app)/page.tsx | 35 ++++++++++++++++++++++++----------- 2 files changed, 25 insertions(+), 12 deletions(-) diff --git a/src/app/(app)/layout.tsx b/src/app/(app)/layout.tsx index 2053846..f6a8630 100644 --- a/src/app/(app)/layout.tsx +++ b/src/app/(app)/layout.tsx @@ -21,7 +21,7 @@ export default function RootLayout({ alt="Drink Happy Logo Image" width={500} height={500} - className="h-auto mx-auto w-1/2" + className="h-auto mx-auto w-1/3" /> {children} { isMobile && isSafari ? ( diff --git a/src/app/(app)/page.tsx b/src/app/(app)/page.tsx index c9b6f08..b5d1cb8 100644 --- a/src/app/(app)/page.tsx +++ b/src/app/(app)/page.tsx @@ -12,12 +12,21 @@ function Mobile() { Welcome, {session?.name || "NULL"} !! - - +
+
+ +
+
+ +
+
+ +
+
); @@ -31,17 +40,21 @@ function Web() { Welcome, {session?.name || "NULL"} !! -
+
- - + +
+
+ +
+
); }