Button Styles

This commit is contained in:
2025-03-29 18:43:55 -04:00
parent 77fb8bf350
commit ccbbfa8ec2

View File

@@ -12,22 +12,43 @@ export default async function Home() {
// If no session, show sign-up and login buttons
if (!session) {
return (
<div className=" items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]">
<main className="flex flex-row gap-[32px] row-start-2 items-center sm:items-start">
<main className="flex flex-row gap-4 row-start-2 items-center sm:items-start">
<button type="button" className="btn preset-filled">
<a href="/auth/login?screen_hint=signup">
<button>Sign up</button>
<span>Sign Up</span>
</a>
</button>
<button type="button" className="btn preset-filled">
<a href="/auth/login">
<button>Log in</button>
<span>Log In</span>
<span>&rarr;</span>
</a>
</button>
</main>
</div>
);
}
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)]">
<main className="flex flex-col gap-[32px] row-start-2 items-center sm:items-start">
<h1>Welcome, {session.user.name}!</h1>
<h1>fauxcall</h1>
<h2>set emergency contacts</h2>
<p>if you stop speaking or say the codeword, these contacts will be notified</p>
<p>
if you stop speaking or say the codeword, these contacts will be
notified
</p>
{/* form for setting codeword */}
<form className="flex flex-col gap-[32px] row-start-2 items-center sm:items-start" onSubmit={(e) => e.preventDefault()}>
<form
className="flex flex-col gap-[32px] row-start-2 items-center sm:items-start"
onSubmit={(e) => e.preventDefault()}
>
<input
type="text"
value={codeword}
@@ -37,10 +58,16 @@ export default async function Home() {
/>
<button
className="bg-blue-500 text-white rounded-md p-2"
type="submit">Set codeword</button>
type="submit"
>
Set codeword
</button>
</form>
{/* form for adding contacts */}
<form className="flex flex-col gap-[32px] row-start-2 items-center sm:items-start" onSubmit={(e) => e.preventDefault()}>
<form
className="flex flex-col gap-[32px] row-start-2 items-center sm:items-start"
onSubmit={(e) => e.preventDefault()}
>
<input
type="text"
value={contacts}
@@ -50,19 +77,7 @@ export default async function Home() {
/>
<button type="submit">Set contacts</button>
</form>
</div>
);
}
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)]">
<main className="flex flex-col gap-[32px] row-start-2 items-center sm:items-start">
<h1>Welcome, {session.user.name}!</h1>
<p>
<a href="/auth/logout">
<button>Log out</button>
</a>
</p>
</main>
</div>
);