summaryrefslogtreecommitdiff
path: root/src/lib/category/components/Category.jsx
blob: 21e2ec6f76770df332a2ac4465cf398e07cf7a41 (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
31
import Link from '@/core/components/elements/Link/Link'
import DesktopView from '@/core/components/views/DesktopView'

const Category = () => {
  return (
    <DesktopView>
      <div className='category-box'>
        <div>
          <Link href='/'>Alat Potong & Pelengkap Mesin</Link>
          <div>
            <div className='font-medium'>Alat Potong & Pelengkap Mesin</div>
          </div>
        </div>
        <div>
          <Link href='/'>Alat Ukur & Instrument</Link>
          <div>
            <div className='font-medium'>Alat Ukur & Instrument</div>
          </div>
        </div>
        <div>
          <Link href='/'>Komponen Mekanikal & Hardware</Link>
          <div>
            <div className='font-medium'>Komponen Mekanikal & Hardware</div>
          </div>
        </div>
      </div>
    </DesktopView>
  )
}

export default Category