"use client"; import { useScroll } from '../hooks/useScroll'; import { useState } from 'react'; import { Menu, X } from 'lucide-react'; function Header() { const { scrollToSectionWithHeader } = useScroll(); const [isMenuOpen, setIsMenuOpen] = useState(false); const navigationItems = [ { name: 'ویژگی‌ها', id: 'features' }, { name: 'امکانات', id: 'what-you-can-do' }, { name: 'چرا ما', id: 'why-aramland' }, { name: 'دانلود', id: 'download' }, { name: 'ارتباط با ما', id: 'footer' }, { name: 'بلاگ', id: 'blog' }, ]; const handleNavClick = (sectionId) => { scrollToSectionWithHeader(sectionId); setIsMenuOpen(false); }; return ( ); } export default Header;