import React from 'react'; import { BookOpen } from 'lucide-react'; import { Link } from 'react-router-dom'; import { Button } from '../../ui/Button'; import { useAuth } from '../../../contexts/AuthContext'; const Header = () => { const { session, signOut } = useAuth(); const handleSignOut = async () => { await signOut(); }; return (