forked from charles5991/next13-ai-saas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.ts
41 lines (39 loc) · 869 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 { Code, ImageIcon, MessageSquare, Music, VideoIcon } from "lucide-react";
export const MAX_FREE_COUNTS = 5;
export const tools = [
{
label: "Conversation",
icon: "/tools/conversation.png",
href: "/conversation",
color: "text-violet-500",
bgColor: "bg-violet-500/10",
},
{
label: "Music",
icon: "/tools/music.png",
href: "/music",
color: "text-emerald-500",
bgColor: "bg-emerald-500/10",
},
{
label: "Image",
icon: "/tools/picture.png",
color: "text-pink-700",
bgColor: "bg-pink-700/10",
href: "/image",
},
{
label: "Video",
icon: "/tools/video.png",
color: "text-orange-700",
bgColor: "bg-orange-700/10",
href: "/video",
},
{
label: "Code",
icon: "/tools/code.png",
color: "text-green-700",
bgColor: "bg-green-700/10",
href: "/code",
},
];