Implement SignIn/SignOut

This commit is contained in:
Jorge Vargas 2024-11-15 12:58:43 -06:00
parent bce35d73ca
commit adeb3fd3bf
16 changed files with 987 additions and 77 deletions

View file

@ -1,14 +1,15 @@
---
import Button from '../Button.astro'
import Button from '../Button'
import clsx from 'clsx'
const { class: className } = Astro.props
---
<Button
class:list={[
className={clsx(
'w-full md:w-fit md:h-full bg-dark hover:bg-dark-hover py-3.5 md:py-1 px-2 rounded-none text-left md:text-center',
className
]}
)}
>
<slot />
</Button>