diff options
| author | trisusilo <tri.susilo@altama.co.id> | 2023-09-05 03:09:22 +0000 |
|---|---|---|
| committer | trisusilo <tri.susilo@altama.co.id> | 2023-09-05 03:09:22 +0000 |
| commit | a6f1daf3d6cbb6187628b13dfc0c31996c151727 (patch) | |
| tree | 7687a64c17357895709f015f07f97e691ebdca92 /src/core/components/elements/Sidebar/Sidebar.jsx | |
| parent | 6b1083de2c5ad57953c6653d00a42b2da3fea108 (diff) | |
| parent | 009aab3dfc5a08f19c8e147f380dc6517b9f6fd1 (diff) | |
Merged in CR/tampilan (pull request #58)
CR/tampilan
Diffstat (limited to 'src/core/components/elements/Sidebar/Sidebar.jsx')
| -rw-r--r-- | src/core/components/elements/Sidebar/Sidebar.jsx | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/core/components/elements/Sidebar/Sidebar.jsx b/src/core/components/elements/Sidebar/Sidebar.jsx index f0bcb7b7..38fcdef8 100644 --- a/src/core/components/elements/Sidebar/Sidebar.jsx +++ b/src/core/components/elements/Sidebar/Sidebar.jsx @@ -2,7 +2,7 @@ import Link from '../Link/Link' import greeting from '@/core/utils/greeting' import useAuth from '@/core/hooks/useAuth' import { AnimatePresence, motion } from 'framer-motion' -import { ChevronDownIcon, ChevronUpIcon, CogIcon } from '@heroicons/react/24/outline' +import { ChevronDownIcon, ChevronUpIcon, CogIcon, UserIcon } from '@heroicons/react/24/outline' import { Fragment, useEffect, useState } from 'react' import odooApi from '@/core/api/odooApi' @@ -111,8 +111,8 @@ const Sidebar = ({ active, close }) => { onClick={close} href='/my/menu' className='!text-gray_r-11 ml-auto my-auto' - > - <CogIcon className='w-6' /> + > + <UserIcon class='h-6 w-6 text-gray-500' /> </Link> </> )} @@ -120,7 +120,12 @@ const Sidebar = ({ active, close }) => { <SidebarLink className={itemClassName} href='/shop/brands'> Semua Brand </SidebarLink> - <SidebarLink className={itemClassName} href='https://blog.indoteknik.com/' target="_blank" rel="noreferrer noopener"> + <SidebarLink + className={itemClassName} + href='https://blog.indoteknik.com/' + target='_blank' + rel='noreferrer noopener' + > Blog Indoteknik </SidebarLink> <SidebarLink className={itemClassName} href='/video'> |
