import { Card } from "@/components/ui/card"; interface AccountCardProps { params: { header: string; description: string; price?: number; }; children: React.ReactNode; } export function AccountCard({ params, children }: AccountCardProps) { const { header, description } = params; return (

{header}

{description}

{children}
); } export function AccountCardBody({ children }: { children: React.ReactNode }) { return
{children}
; } export function AccountCardFooter({ description, children, }: { children: React.ReactNode; description: string; }) { return ( ); }