import { Link } from "react-router-dom"; import { useAuth } from "../contexts/AuthContext"; import "./Footer.css"; export default function Footer() { const { currentUser } = useAuth(); if (!currentUser) return null; return ( ); }