"use client"; import { Home, PlusCircle, Search, TrendingUp, User } from "lucide-react"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; import { cn } from "@/lib/utils"; import { useAuth } from "@/providers/auth-provider"; export function MobileFooter() { const pathname = usePathname(); const { user, isAuthenticated } = useAuth(); const navItems = [ { title: "Accueil", url: "/", icon: Home, }, { title: "Explorer", url: "/trends?openSearch=true", icon: Search, }, { title: "Publier", url: "/upload", icon: PlusCircle, }, { title: "Tendances", url: "/trends", icon: TrendingUp, }, { title: "Profil", url: "/profile", icon: User, }, ]; return ( ); }