import Link from "next/link" import Image from "next/image" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Facebook, Instagram, Twitter, Mail, ArrowRight } from "lucide-react" import { motion } from "framer-motion" export default function Footer() { const fadeInUp = { initial: { opacity: 0, y: 20 }, animate: { opacity: 1, y: 0 }, transition: { duration: 0.5 } } const staggerContainer = { animate: { transition: { staggerChildren: 0.1 } } } return ( ) }