File size: 323 Bytes
c479a59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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"
  },
];