export const imgBaseUrl = `${process.env.API_URL}/storage/images/`;

export const storeFilter = [
  { id: "all", value: "All" },
  { id: "open", value: "Open now" },
  { id: "always_open", value: "Work 24/7" },
  { id: "new", value: "New" },
  { id: "delivery", value: "Pickup" },
];
export const image = "image";
export const color = "color";
export const text = "text";
export const SUPPORTED_FORMATS = [
  "image/jpg",
  "image/jpeg",
  "image/png",
  "image/svg+xml",
  "image/svg",
];
