'use client'; import { Card } from '@/ui/Card'; import { Stack } from '@/ui/primitives/Stack'; import { Text } from '@/ui/Text'; import React from 'react'; interface AuthCardProps { children: React.ReactNode; title: string; description?: string; } /** * AuthCard * * A matte surface container for auth forms with a subtle accent glow. */ export function AuthCard({ children, title, description }: AuthCardProps) { return ( {/* Subtle top accent line */} {null} {title} {description && ( {description} )} {children} ); }