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"
width={500}
height={500}
className="mx-auto w-1/2"
className="w-100 h-auto mx-auto w-1/2"
/>
{children}
{ isMobile && isSafari ? (

View File

@@ -26,15 +26,15 @@ function Mobile() {
function Web() {
const { session } = useDevice();
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">
Welcome, {session?.name || "NULL"} !!
</h1>
<button className="ml-20 mt-2">
<button>
<a href="/auth/login?screen_hint=signup">Sign up</a>
</button>
<button className="ml-20 mt-2">
<button>
<a href="/auth/login?screen_hint=login">Log in</a>
</button>
</main>