This commit is contained in:
2025-02-21 14:56:02 -03:00
parent a8d0667b89
commit 634f422528
9 changed files with 335 additions and 39 deletions

View File

@@ -49,3 +49,17 @@ export default function Auth() {
</>
)
}
export function Card({ children }: { children: React.ReactNode }) {
return (
<Container>
<div className="space-y-2.5 xl:space-y-5 rounded-xl bg-yellow-50 dark:bg-gray-700/60 p-4 lg:p-8 drop-shadow-sm shadow-sm">
{children}
</div>
</Container>
)
}
export function Container({ children }: { children: React.ReactNode }) {
return <div className="w-full 2xl:w-[26rem]">{children}</div>
}