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" }, +];