File size: 583 Bytes
c479a59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a084673
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c479a59
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
export const REACTION_EMOJIS = ["❀️", "🀩", "πŸŽ‰", "πŸ”₯"]

export const COMMUNITY_FILTER_OPTIONS = [
  {
    label: "Most Liked",
    value: "likes",
    icon: "lucide:heart",
    iconColor: "text-red-500"
  },
  {
    label: "New",
    value: "new",
    icon: "lucide:zap",
    iconColor: "text-yellow-500"
  },
];

export const MODELS_FILTER_OPTIONS = [
  {
    label: "Most Liked",
    value: "likes",
    icon: "lucide:heart",
    iconColor: "text-red-500"
  },
  {
    label: "Hotest",
    value: "hot",
    icon: "ph:fire-bold",
    iconColor: "text-orange-500"
  },
];