-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.ts
41 lines (39 loc) · 852 Bytes
/
constants.ts
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
32
33
34
35
36
37
38
39
40
41
import { MessageSquare, ImageIcon, Video, Music, Code } from "lucide-react";
export const MAX_FREE_COUNTS = 5;
export const tools = [
{
label: "Conversational AI",
icon: MessageSquare,
href: "/conversation",
color: "text-sky-500",
bgColor: "bg-sky-500/10",
},
{
label: "Image Generation",
icon: ImageIcon,
href: "/image",
color: "text-emerald-500",
bgColor: "bg-emerald-500/10",
},
{
label: "Video Generation",
icon: Video,
href: "/video",
color: "text-indigo-500",
bgColor: "bg-indigo-500/10",
},
{
label: "Music Generation",
icon: Music,
href: "/music",
color: "text-orange-500",
bgColor: "bg-orange-500/10",
},
{
label: "Code Generation",
icon: Code,
href: "/code",
color: "text-purple-500",
bgColor: "bg-purple-500/10",
},
];