diff --git a/src/app/[name]/(Dialogs)/cart/page.tsx b/src/app/[name]/(Dialogs)/cart/page.tsx index 03da35f..1bc88b7 100644 --- a/src/app/[name]/(Dialogs)/cart/page.tsx +++ b/src/app/[name]/(Dialogs)/cart/page.tsx @@ -65,7 +65,7 @@ const CartIndex = ({ }: Props) => { <> @@ -80,7 +80,7 @@ const CartIndex = ({ }: Props) => { diff --git a/src/app/[name]/(Main)/about/AboutPage.tsx b/src/app/[name]/(Main)/about/AboutPage.tsx index f3ee555..cce8359 100644 --- a/src/app/[name]/(Main)/about/AboutPage.tsx +++ b/src/app/[name]/(Main)/about/AboutPage.tsx @@ -67,22 +67,22 @@ function AboutPage({ data }: Readonly<{ data: AboutDataModel; }>) {

ارتباط

{data.contacts.phone && - + } {data.contacts.telegram && - + } {data.contacts.whatsapp && - + } {data.contacts.instagram && - + } @@ -118,7 +118,7 @@ function AboutPage({ data }: Readonly<{ data: AboutDataModel; }>) {
+ className="bg-[#F6F6FA] dark:bg-border rounded-container leading-5 py-6 px-4 mt-4 flex justify-between items-center">
{v.day}
@@ -155,8 +155,8 @@ function AboutPage({ data }: Readonly<{ data: AboutDataModel; }>) {

نظرات کاربران

-
@@ -180,10 +180,10 @@ function AboutPage({ data }: Readonly<{ data: AboutDataModel; }>) { {sortings.map((v, i) => { return (
-
changeSorting(i)} className="text-sm2 font-medium cursor-pointer"> +
changeSorting(i)} className="text-sm2 font-normal cursor-pointer"> {v}
- {i < sortings.length - 1 &&
} + {i < sortings.length - 1 &&
}
) })} diff --git a/src/app/[name]/(Main)/page.tsx b/src/app/[name]/(Main)/page.tsx index 54f3163..2c15846 100644 --- a/src/app/[name]/(Main)/page.tsx +++ b/src/app/[name]/(Main)/page.tsx @@ -347,10 +347,10 @@ const MenuIndex = () => { {sortings.map((v, i) => { return (
-
changeSorting(i)} className="text-sm2 font-medium cursor-pointer"> +
changeSorting(i)} className="text-sm2 font-normal cursor-pointer"> {tMenu('MenuSortingDrawer.Options.' + v)}
- {i < sortings.length - 1 &&
} + {i < sortings.length - 1 &&
}
) })} diff --git a/src/app/globals.css b/src/app/globals.css index e201ffb..c3d31c8 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -329,7 +329,7 @@ html[data-theme="dark"] { /* #FFFFFF */ --primary: oklch(14% 0.005 285.823); /* #000000 */ - --border: oklch(21.15% 0.012 254.09); + --border: oklch(1 0 0 / 10%); /* #E5E5E5 */ --invalid: oklch(0.515 0.118 27.5); /* red (#FF0000 approx) */ diff --git a/src/components/icons/EqualizerIcon.tsx b/src/components/icons/EqualizerIcon.tsx index 69dd371..7164213 100644 --- a/src/components/icons/EqualizerIcon.tsx +++ b/src/components/icons/EqualizerIcon.tsx @@ -9,7 +9,7 @@ interface EqualizerIconProps { const EqualizerIcon: React.FC = ({ className = '', - stroke = '#333333', + stroke = 'currentColor', strokeWidth = 1.5, size = 16, }) => { diff --git a/src/components/utils/Comment.tsx b/src/components/utils/Comment.tsx index b8c4089..2e98285 100644 --- a/src/components/utils/Comment.tsx +++ b/src/components/utils/Comment.tsx @@ -16,9 +16,9 @@ function Comment({ user, rating, date, text, tags, className = '' }: Props) { return (
- - - {rating} + + + {rating} {user} @@ -31,7 +31,7 @@ function Comment({ user, rating, date, text, tags, className = '' }: Props) {
    {tags.map((v, i) => ( -
  • +
  • {v}
  • ))} diff --git a/src/components/utils/Prompt.tsx b/src/components/utils/Prompt.tsx index beaffed..610f43a 100644 --- a/src/components/utils/Prompt.tsx +++ b/src/components/utils/Prompt.tsx @@ -4,7 +4,7 @@ import { BlurredOverlayContainerProps } from '@/components/overlays/BlurredOverl import Modal from '@/components/utils/Modal' import React from 'react' import { useTranslation } from 'react-i18next' -import { Button } from '../ui/button' +import Button from '../button/PrimaryButton'; export type PromptProps = { title?: string, diff --git a/src/components/utils/RateBar.tsx b/src/components/utils/RateBar.tsx index 4100a13..c569f33 100644 --- a/src/components/utils/RateBar.tsx +++ b/src/components/utils/RateBar.tsx @@ -17,11 +17,11 @@ function RateBar({ percentage, content, className = '' }: Props) { - + {content}
)