import React, { useState, useEffect } from 'react'; import { Logo } from './Logo'; import { Menu, X, Search, Globe } from 'lucide-react'; import { Button } from './Button'; export const Header: React.FC = () => { const [isScrolled, setIsScrolled] = useState(false); const [isMobileMenuOpen, setIsMobileMenuOpen] = useState(false); useEffect(() => { const handleScroll = () => { setIsScrolled(window.scrollY > 20); }; window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); const navLinks = [ { label: 'ANASAYFA', href: '#' }, { label: 'CADI YAYINLARI', href: '#' }, { label: 'ÇEVİRİ', href: '#' }, { label: 'FEMİNİST GÜNDEM', href: '#' }, { label: 'TARİHÇEMİZ', href: '#' }, ]; return (
{/* Logo Section */}

KAMPÜS

CADILARI

{/* Desktop Navigation */} {/* Utility Icons */}
{/* Mobile Menu Toggle */}
{/* Mobile Menu Overlay */} {isMobileMenuOpen && (
)}
); };