import { getAuth } from "@/core/utils/auth" import Link from "../Link/Link" import greeting from "@/core/utils/greeting" import { Cog6ToothIcon } from "@heroicons/react/24/solid" const Sidebar = ({ active, close }) => { const auth = getAuth() return ( <> { active &&
}
{ !auth && ( <> Daftar Masuk ) } { auth && ( <>
{/* { greeting() }, */} { auth?.name }
) }
Semua Brand Tentang Indoteknik Pusat Bantuan Kategori
) } export default Sidebar