"use client"; import { ChevronUp } from "lucide-react"; import { Button } from "@/components/ui/button"; export function Footer() { const scrollToTop = () => { window.scrollTo({ top: 0, behavior: "smooth" }); }; return ( ); }