From de6b2d84a7dfb1222d8c698d858fb4db8da18122 Mon Sep 17 00:00:00 2001 From: Mamalizz Date: Fri, 3 Oct 2025 21:40:53 +0330 Subject: [PATCH] added new constants --- frontend/constants/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/constants/index.ts b/frontend/constants/index.ts index 6414bf2..cfb4f66 100644 --- a/frontend/constants/index.ts +++ b/frontend/constants/index.ts @@ -122,3 +122,9 @@ export const NAV_LINKS = [ icon: "ci:call", }, ]; + +export const PRODUCTS_SORTS = [ + { title: "جدیدترین ها", value: "newest" }, + { title: "گران ترین ها", value: "price" }, + { title: "ارزان ترین ها", value: "-price" }, +];