Made a lot of the front end

This commit is contained in:
2024-11-29 19:37:14 -06:00
parent 04a6322b55
commit 6ff62ca0a6
37 changed files with 1360 additions and 70 deletions

View File

@@ -2,5 +2,13 @@ import { signOut } from "next-auth/react"
import { Button } from "~/components/ui/button"
export default function Sign_Out() {
return <Button onClick={() => signOut()}>Sign Out</Button>
return (
<Button
onClick={() => signOut()}
className="flex flex-row bg-yellow py-3
px-10 rounded-md text-md font-semibold text-background"
>
Sign out
</Button>
);
}