Saas-Teamspace/components/auth/card-wrapper.tsx
2024-11-24 20:56:03 -05:00

42 lines
965 B
TypeScript

'use client'
import { Header } from '@/components/auth/header'
import { Social } from '@/components/auth/social'
import { BackButton } from '@/components/auth/back-button'
import { Card, CardFooter, CardHeader } from '@/components/ui/card'
interface CardWrapperProps {
children: React.ReactNode
headerTitle: string
backButtonLabel: string
backButtonHref: string
showSocial?: boolean
}
export const CardWrapper = ({
children,
headerTitle,
backButtonLabel,
backButtonHref,
showSocial
}: CardWrapperProps) => {
return (
<Card className="mx-auto w-full max-w-sm bg-secondary/90 border border-foreground/5 rounded-lg px-7">
<CardHeader>
<Header title={headerTitle} />
</CardHeader>
<div>{children}</div>
{showSocial && (
<div>
<Social />
</div>
)}
<CardFooter>
<BackButton label={backButtonLabel} href={backButtonHref} />
</CardFooter>
</Card>
)
}