"use client"; import { Download } from "lucide-react"; interface DownloadCardProps { title: string; fileType?: string; fileSize: string; fileUrl: string; } export default function DownloadCard({ title, fileType = "PDF", fileSize, fileUrl, }: DownloadCardProps) { return ( {/* Background glow effect */}
{/* Decorative corner accent */}
{/* Top section */}

{title}

{fileType}
{/* Bottom section */}
{fileSize}
); }