'use client' import { Card, CardContent, CardFooter, CardHeader } from '@/components/ui/card' import { Header } from '@/components/auth/Header' import { Social } from '@/components/auth/Social' import { BackButton } from '@/components/auth/BackButton' type Props = { children: React.ReactNode headerLabel: string headerTitle: string backButtonLabel: string backButtonHref: string showSocial?: boolean continueWithLabel?: string } export const CardWrapper = ({ children, headerLabel, headerTitle, backButtonLabel, backButtonHref, showSocial, continueWithLabel, }: Props) => { return (
{children} {showSocial &&
{continueWithLabel}
{/**/}
} ) }