-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.tsx
339 lines (327 loc) · 10.1 KB
/
data.tsx
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
import { ProjectCard } from "@/components/chat/project-card";
import { Badge } from "@/components/ui/badge";
import { ScrollBar } from "@/components/ui/scroll-area";
import { ScrollArea } from "@radix-ui/react-scroll-area";
import Image from "next/image";
import { ReactNode } from "react";
export type UserData = (typeof userData)[number];
export const loggedInUserData = {
avatar: "/NPC.png",
name: "NPC",
};
export type LoggedInUserData = typeof loggedInUserData;
export interface Message {
avatar: string;
name: string;
message: ReactNode;
}
export interface MessageSection {
title: string;
messages: Message[];
}
export interface User {
avatar: string;
sections: MessageSection[];
name: string;
}
const skills = [
{
name: "Go",
image: "/skills/golang.svg",
},
{
name: "Python",
image: "/skills/python.svg",
},
{
name: "Javascript",
image: "/skills/js.svg",
},
{
name: "TypeScript",
image: "/skills/ts.svg",
},
{
name: "React",
image: "/skills/react.svg",
},
{
name: "Next.js",
image: "/skills/next.svg",
},
{
name: "HTML5",
image: "/skills/html5.svg",
},
{
name: "React",
image: "/skills/react.svg",
},
{
name: "Next.js",
image: "/skills/next.svg",
},
{
name: "HTML5",
image: "/skills/html5.svg",
},
{
name: "CSS3",
image: "/skills/css.svg",
},
{
name: "Tailwind",
image: "/skills/tw.svg",
},
{
name: "Next.js",
image: "/skills/next.svg",
},
{
name: "HTML5",
image: "/skills/html5.svg",
},
{
name: "CSS3",
image: "/skills/css.svg",
},
{
name: "Tailwind",
image: "/skills/tw.svg",
},
];
const RG = "Rahul Goel";
export const userData = [
{
avatar: "/avatar.gif",
sections: [
{
title: "Introduction",
messages: [
{
avatar: "/NPC.png",
name: "NPC",
message:
"Hello. I am an NPC interviewer. Start by introducing yourself.",
},
{
avatar: "/avatar.gif",
name: RG,
message: (
<p>
Hey there! I'm Rahul Goel. Dev enthusiast, problem-solver
extraordinaire, and all-around tech tinkerer. I'm all about
diving into challenges headfirst, finding creative solutions,
and just having a blast with whatever comes my way. Oh, and did
I mention I know how to code? And not just any code - the good
stuff. So, if you're looking for someone who's got the skills
and the spirit to get things done, you've found your match!
</p>
),
},
],
},
{
title: "Skills",
messages: [
{
avatar: "/NPC.png",
name: "NPC",
message: (
<p>
Amazing! So, what are some of your notable skills that you think
make you stand out?
</p>
),
},
{
avatar: "/avatar.gif",
name: RG,
message: (
<div className="">
<p>
Certainly. I possess proficiency in various programming
languages such as Golang, Python, C++, and JavaScript,
showcasing versatility in software development. Within web
development, I am well-versed in frameworks including Django
and ReactJS. I maintain a commitment to best practices such as
Test-Driven Development to ensure robust software solutions.
In essence, my approach combines technical depth with a
dedication to excellence in coding methodologies.
</p>
<div className="overflow-x-auto">
<ScrollArea className="lg:flex lg:justify-center">
{skills.map((skill, index) => (
<Badge
key={index}
className="bg-white text-white"
variant={"outline"}
>
<Image
src={skill.image}
alt={skill.name}
width={25}
height={25}
/>
</Badge>
))}
</ScrollArea>
</div>
</div>
),
},
{
avatar: "/NPC.png",
name: "NPC",
message:
"Wow, impressive! So, are you currently working on any new skills?",
},
{
avatar: "/avatar.gif",
name: RG,
message: (
<div>
<p className="text-gray-50 line-through" style={{textDecoration: "line-through"}}>making friends</p>
<p>
In addition to my current skills, I'm currently focusing on
mastering DevOps and Machine Learning. Despite being disparate
fields, I believe these areas align well with prevailing
market demands, ensuring a versatile skill set for future
endeavors.
</p>
</div>
),
},
],
},
{
title: "Projects",
messages: [
{
avatar: "/NPC.png",
name: "NPC",
message:
"Your skills are impressive! Do you have any supporting evidence for your skills mentioned?",
},
{
avatar: "/avatar.gif",
name: RG,
message: (
<div>
<p>
You bet I do! <br />
<span className="text-sm text-gray-400">
This is only a fraction of all the stuff I did that I felt
to be mature enough to have space here. Visit the portfolio
page for a comprehensive list.
</span>
</p>
<div className="flex flex-col">
<ProjectCard title="whwh" link="https://github.com/aargeee/whwh" desc="Test your webhook based applications gracefully" lang="Golang" stars={0} />
<ProjectCard title="goshowtree" link="https://github.com/aargeee/goshowtree" desc="A CLI tool to view contents of a directory." lang="Golang" stars={0} />
</div>
</div>
),
},
{
avatar: "/NPC.png",
name: "NPC",
message: "Awesome! You seem to really know your stuff",
},
{
avatar: "/avatar.gif",
name: RG,
message: "Thanks!😊",
},
],
},
{
title: "Education",
messages: [
{
avatar: "/NPC.png",
name: "NPC",
message:
"Do you have any formal education or courses you want to talk about?",
},
{
avatar: "/avatar.gif",
name: RG,
message: <div>
<p>I am a junior at the National Institute of Technology, Delhi. I am expected to graduate by May 2025. I am pursuing Bachelor of Technology in the Electronics and Communication branch. Despite my background, I've been interested in Computers and Programming.</p>
<br />
<p>Throughout my education, I have kept a perfect track record. My current CGPA stands at 8.19 making me Rank 5 in my branch and Rank 12 in my batch.</p>
</div>,
},
],
},
{
title: "Get in touch",
messages: [
{
avatar: "/NPC.png",
name: "NPC",
message: "Cool! I'd like to get in touch with you",
},
{
avatar: "/avatar.gif",
name: RG,
message: (
<div>
<p>Here are a few ways you can contact me!</p>
<p><a className="underline" href="mailto:[email protected]">[email protected]</a></p>
</div>
),
},
{
avatar: "/NPC.png",
name: "NPC",
message:
"Awesome! We are gonna love you in our team. Do you have a resume that I can share?",
},
{
avatar: "/avatar.gif",
name: RG,
message: (
<div>
<p>Thanks for the kind words😊</p>
<p>
Here is my resume
<a
href="https://drive.google.com/file/d/1jEWOiY0IWr3VFnSFxhO7W9pNtOraoJPP/"
className="uppercase italic underline"
target="_blank"
>
RESUME
</a>
</p>
</div>
),
},
],
},
{
title: "Work Experience",
messages: [
{
avatar: "/NPC.png",
name: "NPC",
message: "Are you currently working somewhere?",
},
{
avatar: "/avatar.gif",
name: RG,
message: <div>
<p>Yes, I am. Here is the list of my work experience.</p>
<div className="lg:ps-6 ps-2">
<p className=""><span className="font-bold">Pixelotech</span> | Software Developer Intern</p>
<p>I led the development of an in-house Job Applicant tracking software using Django, React, and Postgres. I seamlessly integrated into the Enterprise Information System team, contributing to collaborative efforts. My key role involved writing Django tests to verify API functionality, ensuring reliability throughout the system. Currently, I'm also focused on developing a CI/CD pipeline for our project, which will enhance our development workflow and streamline the deployment process.</p>
</div>
</div>,
}
],
},
],
name: RG,
},
];