'use client'; import { motion } from "framer-motion"; import { Heart, Mail, Phone, MapPin } from "lucide-react"; import { useAppTheme } from "@/components/ThemeProvider"; export function Footer() { const { theme } = useAppTheme(); const isDark = theme === "dark"; const scrollToSection = (id: string) => { const element = document.getElementById(id); if (element) { element.scrollIntoView({ behavior: "smooth" }); } }; const quickLinks = [ { name: 'Home', href: '#home' }, { name: 'About', href: '#about' }, { name: 'Services', href: '#services' }, { name: 'Contact', href: '#contact' }, ]; return ( ); }