"use client"; import { LogIn } from "lucide-react"; import Link from "next/link"; import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; import { Button } from "@/components/ui/button"; import { useAuth } from "@/providers/auth-provider"; export function UserNavMobile() { const { user, isAuthenticated, isLoading } = useAuth(); if (isLoading) { return
; } if (!isAuthenticated || !user) { return ( ); } return ( ); }