-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
41 lines (39 loc) · 916 Bytes
/
constants.ts
File metadata and controls
41 lines (39 loc) · 916 Bytes
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 {ArrowRight, MessageSquare,ImageIcon,VideoIcon,Music,Code } from "lucide-react";
export const MAX_FREE_COUNTS=10;
export const tools=[
{
label: "Conversation",
icon: MessageSquare,
color: "text-violet-500",
bgColor:"bg-violet-500/10",
href:"/conversation"
},
{
label: "Image Generation",
icon: ImageIcon,
color: "text-pink-700",
bgColor:"bg-pink-700/10",
href:"/image"
},
{
label: "Video Generation",
icon: VideoIcon,
color: "text-orange-700",
bgColor:"bg-orange-700/10",
href:"/video"
},
{
label: "Music Generation",
icon: Music,
color: "text-emerald-500",
bgColor:"bg-emerald-500/10",
href:"/music"
},
{
label: "Code Generation",
icon: Code,
color: "text-green-700",
bgColor:"text-green-700/10",
href:"/code"
},
]