import { Shield, Lock, CheckCircle } from 'lucide-react'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; const trustFeatures = [ { icon: Shield, title: 'Bank-Level Security', description: 'Your data is protected with enterprise-grade encryption', }, { icon: Lock, title: 'Secure Client Portal', description: 'Private, password-protected access to your documents', }, { icon: CheckCircle, title: 'IRS Certified', description: 'Our preparers are IRS certified and stay current with tax law', }, ]; export function TrustPanel() { return (

Your Security & Trust Are Our Priority

We understand the sensitive nature of your financial information. That's why we've implemented the highest security standards to protect your data.

{trustFeatures.map((feature) => (
{feature.title}
{feature.description}
))}
); }