'use client' import { motion } from 'framer-motion' import { Shield, Mail, Phone, MapPin } from 'lucide-react' import Link from 'next/link' import { usePathname } from 'next/navigation' export default function Footer() { const currentYear = new Date().getFullYear() const pathname = usePathname() const isHomePage = pathname === '/' const getNavHref = (href: string) => { if (isHomePage) { return href } return `/${href}` } return ( ) }