"use client"; import Image from "next/image"; import NavigationLink from "./NavigationLink"; import SignIn from "./SignIn"; import { useAuth } from "@/shared/contexts/AuthContext"; import UserProfile from "./UserProfile"; const Navbar = () => { const { session } = useAuth(); return (
Astofo Logo
{session?.user ? : }
); }; export default Navbar;