@@ -158,14 +159,18 @@ watch(
:key="index"
:to="link.path"
class="w-full flex items-center justify-between gap-3 p-2 transition-all"
- active-class="bg-black rounded-md text-white **:stroke-white"
+ active-class="bg-black rounded-md text-white [&_.drawer-item-icon]:invert"
>
-
-
+
+
{{ link.title }}
diff --git a/frontend/constants/index.ts b/frontend/constants/index.ts
index 1d02863..d30e85d 100644
--- a/frontend/constants/index.ts
+++ b/frontend/constants/index.ts
@@ -109,22 +109,22 @@ export const NAV_LINKS = [
{
title: "خانه",
path: "/",
- icon: "ci:home",
+ icon: "/img/mobile-drawer/home.gif",
},
{
title: "محصولات",
path: "/products",
- icon: "ci:airdrop",
+ icon: "/img/mobile-drawer/products.gif",
},
{
title: "دسته بندی ها",
path: "/category",
- icon: "ci:delivery-boxes",
+ icon: "/img/mobile-drawer/category.gif",
},
{
title: "ارتباط با ما",
path: "/contact-us",
- icon: "ci:call",
+ icon: "/img/mobile-drawer/contact.gif",
},
];
diff --git a/frontend/public/img/mobile-drawer/cart.gif b/frontend/public/img/mobile-drawer/cart.gif
new file mode 100644
index 0000000..6d05f2b
Binary files /dev/null and b/frontend/public/img/mobile-drawer/cart.gif differ
diff --git a/frontend/public/img/mobile-drawer/category.gif b/frontend/public/img/mobile-drawer/category.gif
new file mode 100644
index 0000000..c837a13
Binary files /dev/null and b/frontend/public/img/mobile-drawer/category.gif differ
diff --git a/frontend/public/img/mobile-drawer/contact.gif b/frontend/public/img/mobile-drawer/contact.gif
new file mode 100644
index 0000000..bf9854c
Binary files /dev/null and b/frontend/public/img/mobile-drawer/contact.gif differ
diff --git a/frontend/public/img/mobile-drawer/home.gif b/frontend/public/img/mobile-drawer/home.gif
new file mode 100644
index 0000000..024f6c6
Binary files /dev/null and b/frontend/public/img/mobile-drawer/home.gif differ
diff --git a/frontend/public/img/mobile-drawer/products.gif b/frontend/public/img/mobile-drawer/products.gif
new file mode 100644
index 0000000..c6d269a
Binary files /dev/null and b/frontend/public/img/mobile-drawer/products.gif differ
diff --git a/frontend/public/img/mobile-drawer/profile.gif b/frontend/public/img/mobile-drawer/profile.gif
new file mode 100644
index 0000000..e5790e0
Binary files /dev/null and b/frontend/public/img/mobile-drawer/profile.gif differ