We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c751292 commit 197b84aCopy full SHA for 197b84a
.gitignore
@@ -4,6 +4,7 @@
4
/node_modules
5
/.pnp
6
.pnp.js
7
+package-lock.json
8
9
# testing
10
/coverage
src/app/(public)/_components/header.tsx
@@ -26,7 +26,7 @@ export async function Header() {
26
27
<div className="flex gap-2 lg:ml-40">
28
<form action={session ? signOutAction : signInAction}>
29
- <button className="text-white border-white btn btn-ghost border-1">
+ <button className="text-white border-white btn btn-ghost border-1 ms-4">
30
{session && session.user ? 'Sign Out' : 'Sign In'}
31
</button>
32
</form>
0 commit comments