enzostvs's picture
enzostvs HF Staff
fix build
a084673
raw
history blame
583 Bytes
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"
},
];