-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.ts
38 lines (38 loc) · 939 Bytes
/
tools.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
import { LuCode, LuImage, LuMessageSquare, LuMusic, LuVideo } from "react-icons/lu";
export const tools = [
{
label: "Conversation",
icon: LuMessageSquare,
color: "text-violet-500",
bgColor: "bg-violet-500/10",
href: "/conversation",
},
{
label: "Music Generation",
icon: LuMusic,
color: "text-sky-500",
bgColor: "bg-sky-500/10",
href: "/music",
},
{
label: "Image Generation",
icon: LuImage,
color: "text-pink-500",
bgColor: "bg-pink-500/10",
href: "/image",
},
{
label: "Video Generation",
icon: LuVideo,
color: "text-orange-500",
bgColor: "bg-orange-500/10",
href: "/video",
},
{
label: "Code Generation",
icon: LuCode,
color: "text-emerald-500",
bgColor: "bg-emerald-500/10",
href: "/code",
},
]