import Link from "next/link" import { Badge } from "@/components/ui/badge" import { Shield } from "lucide-react" interface FooterProps { variant?: 'default' | 'dark' showNavigation?: boolean onAuthClick?: () => void } export default function Footer({ variant = 'default', showNavigation = true, onAuthClick }: FooterProps) { const getFooterStyles = () => { switch (variant) { case 'dark': return "bg-gray-900 text-gray-300 py-8 px-4" default: return "bg-gray-900 dark:bg-gray-900 text-white py-12 px-4 transition-colors" } } return ( ) }