diff options
| author | trisusilo48 <tri.susilo@altama.co.id> | 2024-09-17 14:37:18 +0700 |
|---|---|---|
| committer | trisusilo48 <tri.susilo@altama.co.id> | 2024-09-17 14:37:18 +0700 |
| commit | c28642a0003f0bd996614cb6849d951c7e276a11 (patch) | |
| tree | 88f260fcdbbcd535c687038ba0564141fa4d6e73 /src/core | |
| parent | 375365d46144e6f20bf7d4ffee1f52e6400cf214 (diff) | |
optimize page and tag html
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/components/elements/Navbar/NavbarDesktop.jsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/components/elements/Navbar/NavbarDesktop.jsx b/src/core/components/elements/Navbar/NavbarDesktop.jsx index ebbcf857..2a51c41f 100644 --- a/src/core/components/elements/Navbar/NavbarDesktop.jsx +++ b/src/core/components/elements/Navbar/NavbarDesktop.jsx @@ -293,7 +293,7 @@ const NavbarDesktop = () => { /> </div> )} - <p className="absolute inset-0 flex justify-center items-center group-hover:scale-105 group-hover:text-red-500 transition-transform duration-200 z-10">Semua Promo</p> + <span className="absolute inset-0 flex justify-center items-center group-hover:scale-105 group-hover:text-red-500 transition-transform duration-200 z-10">Semua Promo</span> </Link> {/* {showPopup && router.pathname === '/' && ( <div className={`fixed ${isTop ? 'top-[170px]' : 'top-[90px]'} rounded-3xl left-[700px] w-fit object-center bg-green-50 text-xs font-medium text-green-700 ring-1 ring-inset ring-green-600/20 text-center p-2 z-50 transition-all duration-300`}> @@ -312,7 +312,7 @@ const NavbarDesktop = () => { target='_blank' rel='noreferrer' > - <p className="group-hover:scale-105 group-hover:text-red-500 transition-transform duration-200">Semua Brand</p> + <span className="group-hover:scale-105 group-hover:text-red-500 transition-transform duration-200">Semua Brand</span> </Link> <Link href='/shop/search?orderBy=stock' @@ -323,7 +323,7 @@ const NavbarDesktop = () => { target='_blank' rel='noreferrer' > - <p className="group-hover:scale-105 group-hover:text-red-500 transition-transform duration-200">Ready Stock</p> + <span className="group-hover:scale-105 group-hover:text-red-500 transition-transform duration-200">Ready Stock</span> </Link> <Link href='https://blog.indoteknik.com/' @@ -331,7 +331,7 @@ const NavbarDesktop = () => { target='_blank' rel='noreferrer noopener' > - <p className="group-hover:scale-105 group-hover:text-red-500 transition-transform duration-200">Blog Indoteknik</p> + <span className="group-hover:scale-105 group-hover:text-red-500 transition-transform duration-200">Blog Indoteknik</span> </Link> {/* <Link href='/video' |
