welcome text update

This commit is contained in:
snekd
2025-04-12 16:21:01 -04:00
parent cf74cd9eec
commit ce2e04ed34
2 changed files with 4 additions and 4 deletions

View File

@@ -21,7 +21,7 @@ export default function RootLayout({
alt="Drink Happy Logo Image" alt="Drink Happy Logo Image"
width={500} width={500}
height={500} height={500}
className="mx-auto w-1/2" className="w-100 h-auto mx-auto w-1/2"
/> />
{children} {children}
{ isMobile && isSafari ? ( { isMobile && isSafari ? (

View File

@@ -26,15 +26,15 @@ function Mobile() {
function Web() { function Web() {
const { session } = useDevice(); const { session } = useDevice();
return ( return (
<main className="flex flex-col gap-[32px] row-start-2 items-center sm:items-start ml-10"> <main className="flex flex-col gap-[32px] row-start-2 items-center mt-10">
<h1 className="text-3xl sm:text-4xl font-bold tracking-[-.01em] text-center sm:text-left"> <h1 className="text-3xl sm:text-4xl font-bold tracking-[-.01em] text-center sm:text-left">
Welcome, {session?.name || "NULL"} !! Welcome, {session?.name || "NULL"} !!
</h1> </h1>
<button className="ml-20 mt-2"> <button>
<a href="/auth/login?screen_hint=signup">Sign up</a> <a href="/auth/login?screen_hint=signup">Sign up</a>
</button> </button>
<button className="ml-20 mt-2"> <button>
<a href="/auth/login?screen_hint=login">Log in</a> <a href="/auth/login?screen_hint=login">Log in</a>
</button> </button>
</main> </main>