-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.ts
136 lines (127 loc) · 3.62 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import {
Code,
ImageIcon,
LayoutDashboard,
MessageSquare,
Music,
Settings,
VideoIcon
} from "lucide-react";
export const MAX_FREE_TRIALS = 5
export const routes = [
{
label: "Dashboard",
icon: LayoutDashboard,
href: "/dashboard",
text_color: "text-sky-500",
},
{
label: "Conversation",
icon: MessageSquare,
href: "/conversation",
text_color: "text-violet-500",
},
{
label: "Image Generation",
icon: ImageIcon,
href: "/image",
text_color: "text-pink-500",
},
{
label: "Video Generation",
icon: VideoIcon,
href: "/video",
text_color: "text-orange-700",
},
{
label: "Music Generation",
icon: Music,
href: "/music",
text_color: "text-emerald-500",
},
{
label: "Code Generation",
icon: Code,
href: "/code",
text_color: "text-green-700",
},
{
label: "Settings",
icon: Settings,
href: "/settings",
},
];
export const tools = [
{
label: "Conversation",
icon: MessageSquare,
href: "/conversation",
color: "text-violet-500",
bgColor: "bg-violet-500/10",
},
{
label: "Image Generation",
icon: ImageIcon,
href: "/image",
color: "text-pink-700",
bgColor: "bg-pink-700/10",
},
{
label: "Video Generation",
icon: VideoIcon,
href: "/video",
color: "text-orange-700",
bgColor: "bg-orange-700/10",
},
{
label: "Music Generation",
icon: Music,
href: "/music",
color: "text-emerald-700",
bgColor: "bg-emerald-700/10",
},
{
label: "Code Generation",
icon: Code,
href: "/code",
color: "text-green-700",
bgColor: "bg-green-700/10",
},
];
export const homeAITools = [
{
index: 0,
title: "Image Generation",
desc: "Create stunning images in various resolutions for free. Effortlessly adjust image sizes to suit your needs, from high-definition to web-friendly, all at your fingertips. Say hello to versatile, cost-effective image generation!",
src: "/homeImg.avif",
href: "/image"
},
{
index: 1,
title: "Chat with AI",
desc: "CFrom quick answers to everyday questions to clearing up confusion, our chatbot is your go-to resource. Harness the power of AI for effortless problem-solving and enjoy a smoother, more informed daily routine with Genius!",
src: "/homeChatbot.png",
href: "/conversation"
},
{
index: 2,
title: "Code Generation",
desc: "Simplify your coding tasks. Effortlessly streamline your development process and enhance your understanding of the code. Stuck somewhere, leverage the power of AI!",
src: "/homeCodes.jpg",
href: "/code"
},
{
index: 3,
title: "Music Generation",
desc: "Generate music in different genres and styles. Create original tracks, from soothing melodies to energetic beats, all for free. Unlock the Beethovan inside of you!",
src: "/homeMusic.png",
href: "/music"
},
{
index: 4,
title: "Video Generation",
desc: "Transform your ideas into captivating videos with ease. Just provide a simple prompt and description, and watch as our app generates stunning videos that bring your vision to life. Say goodbye to complex editing – create effortlessly with Genius!",
src: "/homeVideo.png",
href: "/video"
},
]