summaryrefslogtreecommitdiff
path: root/src/core/components/elements/Sidebar/Sidebar.jsx
blob: 249ccbce9fdbaf53e7b1d0f2a3edadadf4131102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import Link from "../Link/Link"

const Sidebar = ({
  active,
  close
}) => {
  return (
    <>
      { active && <div className="overlay z-50" onClick={close}></div> }
      <div className={`fixed z-[55] top-0 h-full w-[80%] transition-all ease-linear duration-50 bg-white ${active ? 'left-0' : '-left-[80%]'}`}>
        <div className="divide-y divide-gray_r-6">
          <Link href="/" className="px-4 py-3 block !text-gray_r-12 font-normal">
            Semua Brand
          </Link>
          <Link href="/" className="px-4 py-3 block !text-gray_r-12 font-normal">
            Tentang Indoteknik
          </Link>
          <Link href="/" className="px-4 py-3 block !text-gray_r-12 font-normal">
            Pusat Bantuan
          </Link>
          <Link href="/" className="px-4 py-3 block !text-gray_r-12 font-normal">
            Kategori
          </Link>
        </div>
      </div>
    </>
  )
}

export default Sidebar