working on images

This commit is contained in:
snekd
2025-04-12 16:12:29 -04:00
parent 3b4becfcf5
commit 3f1521693c
2 changed files with 6 additions and 11 deletions

View File

@@ -18,9 +18,9 @@ export default function RootLayout({
<Image <Image
src="/drinkhappylogo.png" src="/drinkhappylogo.png"
alt="Hero Image" alt="Drink Happy Logo Image"
width={200} width={500}
height={200} height={500}
className="mx-auto w-1/2" className="mx-auto w-1/2"
/> />
{children} {children}

View File

@@ -7,11 +7,6 @@ function Mobile() {
return ( return (
<div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]"> <div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]">
<img
src="./drinkhappylogo.png"
alt="Drink Happy Logo"
className="row-start-1 h-10 sm:h-12 object-contain"
/>
<main className="flex flex-col gap-[32px] row-start-2 items-center sm:items-start"> <main className="flex flex-col gap-[32px] row-start-2 items-center sm:items-start">
<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"} !!
@@ -31,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"> <main className="flex flex-col gap-[32px] row-start-2 items-center sm:items-start ml-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> <button className="ml-20 mt-2">
<a href="/auth/login?screen_hint=signup">Sign up</a> <a href="/auth/login?screen_hint=signup">Sign up</a>
</button> </button>
<button> <button className="ml-20 mt-2">
<a href="/auth/login?screen_hint=login">Log in</a> <a href="/auth/login?screen_hint=login">Log in</a>
</button> </button>
</main> </main>