import Link from "next/link" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Facebook, Github, Instagram, Linkedin, Twitter } from "lucide-react" import { services } from "@/data/services" import { Animate } from "@/components/animations/animate" import { Logo } from "@/components/logo" const company = [ { item: "Servizi", href: "/#services" }, { item: "Progetti", href: "/portfolio" }, { item: "Testimonianze", href: "/#testimonials" }, { item: "Blog", href: "/blog" }, { item: "Contattaci", href: "/#contact" }, ] export function Footer() { return ( ) }