"use client" import { useAppStore } from "@/lib/store" import { Squares2X2Icon, BanknotesIcon, QrCodeIcon, UserIcon } from "@heroicons/react/24/outline" import Link from "next/link" const Navigation = () => { const { user } = useAppStore() return(
Events {user?.role === 1 && ( Scan )} Profile
) } export default Navigation