diff --git a/frontend/assets/css/tailwind.css b/frontend/assets/css/tailwind.css index b615e31..ce44cf6 100644 --- a/frontend/assets/css/tailwind.css +++ b/frontend/assets/css/tailwind.css @@ -265,32 +265,30 @@ /* CONTAINER */ @utility container { - @apply mx-auto; - padding-inline: 1.5rem; - max-width: 1380px; + @apply mx-auto px-6; @screen 2xs { - padding-inline: 1rem; + @apply px-4; } @screen xs { - padding-inline: 1rem; + @apply px-4; } @screen sm { - padding-inline: 1rem; + @apply px-4; } @screen md { - padding-inline: 2rem; + @apply px-8; } @screen lg { - padding-inline: 3rem; + @apply px-12; } @screen xl { - padding-inline: 5rem; + @apply px-20; } } diff --git a/frontend/components/global/CategoryCard.vue b/frontend/components/global/CategoryCard.vue index 2233e8e..9f5f38a 100644 --- a/frontend/components/global/CategoryCard.vue +++ b/frontend/components/global/CategoryCard.vue @@ -37,28 +37,20 @@ const { colorObject } = useImageColor(`#category-image-${id.value}`); />
+
-
- {{ category }} - - {{ count }} - -
- محصولات ما را مشاهده کنید + {{ category }}
+ + // imports import { NAV_LINKS } from "~/constants"; + - - + \ No newline at end of file diff --git a/frontend/components/global/ServiceHighlights.vue b/frontend/components/global/ServiceHighlights.vue index 9206028..296387e 100644 --- a/frontend/components/global/ServiceHighlights.vue +++ b/frontend/components/global/ServiceHighlights.vue @@ -11,35 +11,35 @@ type Highlight = { const highlights = ref([ { - icon: "ci:headset", + icon: "/img/footer-support.svg", title: "خدمات مشتری", - description: "پشتیبانی استثنایی، راه‌حل‌های پایدار برای شما عزیزان" + description: "پشتیبانی استثنایی، راه‌حل‌های پایدار برای شما" }, { - icon: "ci:delivery", + icon: "/img/footer-send.svg", title: "ارسال سریع و رایگان", - description: "ارسال رایگان برای سفارش‌های بالای ۱۵۰ دلار و خورده" + description: "ارسال رایگان برای سفارش‌های بالای ۱۵۰ دلار" }, { - icon: "ci:users", + icon: "/img/footer-share.svg", title: "معرفی به دوستان", - description: "دوستان خود را معرفی کنید و هر دو ۱۵٪ تخفیف بگیرید" + description: "ما را به دوستان خود معرفی کنید" }, { - icon: "ci:shield-done", + icon: "/img/footer-security.svg", title: "پرداخت امن", - description: "اطلاعات پرداخت شما به‌صورت امن پردازش می‌شود" + description: "پرداخت شما به‌صورت امن پردازش می‌شود" } ]);