-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresume-data.tsx
791 lines (786 loc) · 23.5 KB
/
resume-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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
import {
GitHubIcon,
LinkedInIcon,
XIcon,
MediumIcon,
TelegramIcon,
} from "@/components/icons";
import { ArrowRightIcon } from "lucide-react";
export const RESUME_DATA = {
name: "Asharib Ali",
initials: "AA",
location: "Based in Pakistan 🇵🇰",
locationLink: "https://www.google.com/maps/place/nawabshah",
about: "Passionate Developer. Designer. Manager. 🤍",
summary:
"🙌 I Build AI & Blockchain Stuffs | ❇️ 3+ years of Tech Experience | ✨ Building products with latest tech-stack | 🌱 Contributing open-source | 🤖 Learning Cloud Native Applied Generative AI | 🧑💻 Teaching programming to 1,500+ students on-site while managing a community of 30k+ students at GIAIC.",
avatarUrl: "https://avatars.githubusercontent.com/u/102221198?v=4",
personalWebsiteUrl: "https://asharib.xyz",
contact: {
email: "[email protected]",
social: [
{
name: "Telegram",
url: "https://t.me/AsharibAli",
icon: TelegramIcon,
},
{
name: "LinkedIn",
url: "https://www.linkedin.com/in/asharibali/",
icon: LinkedInIcon,
},
{
name: "X",
url: "https://x.com/0xAsharib",
icon: XIcon,
},
{
name: "Medium",
url: "https://asharibali.medium.com/",
icon: MediumIcon,
},
{
name: "GitHub",
url: "https://github.com/AsharibAli",
icon: GitHubIcon,
},
],
},
education: [
{
school: "Panaverse, PIAIC",
degree: "Cloud Native Applied Generative AI (GenEng)",
start: "2022",
end: "Present",
},
{
school: "Goverment Boys Degree College",
degree: "Intermediate in General Science",
start: "2020",
end: "2022",
},
],
achievements: [
{
title: "Binance Followed me on X",
by: "By: Binance Official",
reference: [
{
name: "👉 Reference",
url: "https://twitter.com/binance",
},
],
},
{
title: "Honourable IT Instructor",
by: "By: Tameer-E-Millat Institute",
reference: [
{
name: "👉 Reference",
url: "https://x.com/0xAsharib/status/1741472460837421225?s=20",
},
],
},
{
title: "Masa Finance Ambassador ",
by: "By: Masa AI Official",
reference: [
{
name: "👉 Reference",
url: "http://masa.ai/",
},
],
},
{
title: "FlowiseAI Expert (Open-Source Contributor)",
by: "By: FlowiseAI Official",
reference: [
{
name: "👉 Reference",
url: "https://github.com/flowiseai/flowise",
},
],
},
{
title: "Lava Blockchain Champion (Open-Source Contributor)",
by: "By: Lava Network Official",
reference: [
{
name: "👉 Reference",
url: "https://x.com/yaircleper/status/1768695964703822175?s=20",
},
],
},
{
title: "Open Campus Hackathon Winner (Infrastructure-Track)",
by: "By: Open Campus Official",
reference: [
{
name: "👉 Reference",
url: "https://medium.com/edu-chain/announcing-the-winners-of-edu-chain-hackathon-semester-1-6554808bbf5a",
},
],
},
{
title: "Celestia Hackathon Winner (Community-Track)",
by: "By: Celestia Blockchain Official",
reference: [
{
name: "👉 Reference",
url: "https://x.com/CelestiaOrg/status/1797710392992678345",
},
],
},
{
title: "Owl Hackathon Hackathon Winner (Bounty-Track)",
by: "By: Owl Protocol Official",
reference: [
{
name: "👉 Reference",
url: "https://x.com/owlprotocol_xyz/status/1798708978253509002?s=52",
},
],
},
{
title: "DSCVR Hackathon Hackathon Winner (Metaplex-Track)",
by: "By: DSCVR & Metaplex Official",
reference: [
{
name: "👉 Reference",
url: "https://www.youtube.com/watch?v=8D9SQx4azxE",
},
],
},
{
title: "DSCVR Hackathon Hackathon Winner (DSCVR-Track)",
by: "By: DSCVR Official",
reference: [
{
name: "👉 Reference",
url: "https://earn.superteam.fun/listings/bounty/build-a-canvas-on-dscvr/",
},
],
},
{
title: "Workshop Speaker at Mega Co-Learning Camp with EduChain",
by: "By: HackQuest Official",
reference: [
{
name: "👉 Reference",
url: "https://x.com/HackQuest_/status/1863830459488350572",
},
{
name: "👉 Reference",
url: "https://x.com/HackQuest_/status/1863833522613686751",
},
{
name: "👉 Reference",
url: "https://x.com/HackQuest_/status/1864638387216634005",
},
],
},
{
title: "Most Used Platform on EduChain (6.7M+ on-chain Transactions)",
by: "By: Open Campus Official",
reference: [
{
name: "👉 Reference",
url: "https://x.com/opencampus_xyz/status/1860993260237525007",
},
],
},
{
title: "Youngest AMA Speaker about Education on Blockchain",
by: "By: Pukecast Official",
reference: [
{
name: "👉 Reference",
url: "https://x.com/pukecast/status/1856030956135821538",
},
{
name: "👉 Reference",
url: "https://x.com/pukecast/status/1856683237793538467",
},
],
},
{
title: "Win 10+ Crypto-Based Contests",
by: "By: multiple crypto projects and communities",
reference: [
{
name: "👉 Reference",
url: "https://x.com/0xasharib",
},
],
},
{
title: "Top 10% in AI & Blockchain at Panaverse",
by: "By: COO of PIAIC, Sir Zia Khan",
reference: [
{
name: "👉 Reference",
url: "https://imgbb.com/GcrjcTw",
},
],
},
{
title: "CZ Binance Commented on my Tweet",
by: "By: Ex CEO of Binance",
reference: [
{
name: "👉 Reference",
url: "https://twitter.com/cz_binance/status/1582658179569442817?s=20",
},
],
},
{
title: "Student Ambassador of 30k+ GIAIC Students ",
by: "By: Head of Faculty at GIAIC",
reference: [
{
name: "👉 Reference",
url: "https://www.linkedin.com/posts/ameen-alam_asharib-ali-governor-sindh-initiative-for-activity-7167880905192030208-x-Yp/?utm_source=share&utm_medium=member_desktop",
},
],
},
{
title: "EigenLayer Appreciated my Work & Active Contributor on Forum",
by: "By: EigenLayer Official",
reference: [
{
name: "👉 Reference",
url: "https://twitter.com/eigenlayer/status/1640449493526274049?s=20",
},
],
},
{
title:
"Best Student of the Year award at GBD College out of 1200+ Students",
by: "By: GBD College Principal",
reference: [
{
name: "👉 Reference",
url: "https://www.instagram.com/p/CRTPa8Wt_cL/",
},
],
},
{
title: "Received many awards for winning multiple speech contests",
by: "By: Multiple Organizations & Local Institutes",
reference: [
{
name: "👉 Reference",
url: "https://www.linkedin.com/posts/asharibali_speech-winnerchallenge-activity-7152583254942855168-VVJD?utm_source=share&utm_medium=member_desktop",
},
],
},
{
title: "Complete Tranlsation of Learn Prompting Guide into Urdu Language",
by: "By: Learn Prompting Organization (Open-Source Contribution)",
reference: [
{
name: "👉 Reference",
url: " https://www.linkedin.com/posts/asharibali_somethingbig-buildinpublic-ai-activity-7168993498921193474-wPFn?utm_source=share&utm_medium=member_desktop ",
},
],
},
{
title: "From Challenge to Change, Ramadan Good Deed Contest Winner",
by: "By: Binance Official",
reference: [
{
name: "👉 Reference",
url: "https://twitter.com/binance/status/1714321768368967735",
},
],
},
],
work: [
{
company: "GIAIC",
link: "https://www.linkedin.com/posts/asharibali_piaic-giaic-ai-activity-7162920750088155136-VwIL",
badges: ["Onsite", "Part-Time"],
title: "Lead Teacher & Student Ambassador",
start: "2024 Feb",
end: "Present",
description:
"I am teaching programming to thousands of students on-site and managing the GIAIC Discord community to help students learn and grow.",
bulletPoints: [
{
text: "Leading 1500+ students as an onsite lead instructor for programming practical and fundamentals",
link: "https://www.linkedin.com/posts/asharibali_little-glimpse-i-had-the-pleasure-of-activity-7239249368883576834-gysQ?utm_source=share&utm_medium=member_desktop",
},
{
text: "Managing 30k+ student community on Discord as a Student Ambassador",
link: "https://discord.gg/ZsN4YVRsRg",
},
{
text: "Organized successful 100-days-of-coding challenge with 1k+ active participants",
link: "https://github.com/AsharibAli/100-days-of-code",
},
{
text: "Organized successful 30-days-of-30-projects challenge with 1k+ active participants",
link: "https://github.com/AsharibAli/30days-of-30projects",
},
],
},
{
company: "Tameer-E-Millat Institute",
link: "https://twitter.com/0xAsharib/status/1712050364823048485",
badges: ["Onsite", "Contract"],
title: "Head of IT",
start: "2023 Oct",
end: "2023 Dec",
description:
"I launched Nawabshah's first Blockchain & AI course, teaching cutting-edge technologies. I led a 3-month Introductory-Level course covering web technologies, fundamentals, and modern tech trends.",
bulletPoints: [
{
text: "Designed and delivered comprehensive curriculum for 50+ students",
},
{
text: "Achieved 90% student satisfaction rate through hands-on learning approach",
},
{
text: "Introduced innovative teaching methods combining theory with practical projects",
},
],
},
{
company: "B4Business",
link: "https://b4bussines.com/",
badges: ["Remote", "Part-Time"],
title: "Founder & Content Writer",
start: "2022 Jan",
end: "2023 Jan",
description:
"I managed and led B4Business, a comprehensive learning hub, using WordPress as a CMS. I authored articles on Blockchain, Technical Analysis, and Fundamental News, engaging with the community to foster a space for learning and growth.",
bulletPoints: [
{
text: "Published 100+ articles on blockchain technology",
},
{
text: "Grew website traffic through SEO optimization",
},
],
},
{
company: "IVSpace",
link: "https://www.ivspace.io/",
badges: ["Remote", "Part-Time"],
title: "Community Administrator",
start: "2022 Jan",
end: "2022 June",
description:
"I led IVSpace community social handles, helping members and growing engagement through moderation and community-building activities.",
bulletPoints: [
{
text: "Led 5k+ member community on Discord and Telegram",
},
{
text: "Grew active members by 40% through engagement activities",
},
{
text: "Set up and enforced community rules and guidelines",
},
],
},
],
skills: [
"HTML/CSS/Javascript",
"TypeScript",
"React/Next.js",
"Tailwind CSS",
"PostgreSQL",
"Node.js",
"Python",
"fastAPI",
"SQLModel",
"Docker",
"Docker Compose",
"CI/CD Actions",
"Solidity",
"EVM",
"Tech Teaching",
"API Development",
"Frontend Development",
"Backend Development",
"Full Stack Development",
"Blockchain Development",
"AI Development",
"Prompt Engineering",
"Content Creator",
"Content Writer",
"Community Management",
"Project Management",
],
projects: [
{
title: "Talkn",
techStack: [
"Hackathon Project",
"TypeScript",
"React",
"Next.js",
"Solidity",
"Harhat",
],
description:
"Talkn is a groundbreaking project that revolutionizes the Web3 space by implementing the Talk-2-Earn and Engage-2-Earn concepts.",
link: {
label: "https://talkn-rho.vercel.app/",
href: "https://talkn-rho.vercel.app/",
},
},
{
title: "Safock",
techStack: [
"Hackathon Project",
"Next.js",
"Reserve Protocol",
"Solidity",
],
description:
"Safock - Opening Doors to DeFi ETFs | Stake ETFs | Get Insurance on ETFs | Backed by RTokens.",
link: {
label: "safock-asharibali.vercel.app/",
href: "https://safock-asharibali.vercel.app/",
},
},
{
title: "5irePay",
techStack: ["Hackathon Project", "Next.js", "Solidity"],
description:
"5irePay is the PayPal of Crypto - send and receive crypto payments instantly with just an email address only!",
link: {
label: "5ire-pay.vercel.app",
href: "https://5ire-pay.vercel.app/",
},
},
{
title: "Panaverse",
techStack: ["Assignment Project", "JavaScript", "Next.js", "TailwindCSS"],
description:
"Panaverse is a forward-thinking educational organization in pakistan.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/panaverse-website",
},
},
{
title: "Smart Wallet Accounts",
techStack: ["Assignment Project", "Solidity", "Next.js", "Erc4337"],
description:
"It allows users to interact with the blockchain in a smart way.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/smart-wallet-accounts",
},
},
{
title: "Portfolio",
techStack: ["Portfolio Project", "Nextjs", "TypeScript", "TailwindCSS"],
description: "My personal portfolio website.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/portfolio",
},
},
{
title: "Ecommerce Store",
techStack: ["Assignment Project", "Nextjs", "Sanity", "Drizzle"],
description: "Ecommerce store build with latest stack.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/ecommerce-store",
},
},
{
title: "Ecommerce Store 2.0",
techStack: ["Assignment Project", "Nextjs", "Shopify", "Typescript"],
description:
"Ecommerce Store 2.0 uses Shopify as a Backend & Nextjs as a Frontend.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/shopify-nextjs-commerce2.0",
},
},
{
title: "Neghs Website",
techStack: ["Side Project", "HTML", "CSS", "JavaScript"],
description:
"A school website for Noman School, built with HTML, CSS, and JavaScript.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/noman-school-website",
},
},
{
title: "SCM Website",
techStack: ["Side Project", "HTML", "SCSS", "JavaScript"],
description:
"A school website for SCM School, built with HTML, SCSS, and JavaScript.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/scm-website",
},
},
{
title: "Create Blast Dapp",
techStack: ["Hackathon Project", "Npm Package", "Nextjs", "Hardhat"],
description:
"A full-stack starter template featuring Next & Hardhat, designed for building Dapps on Blast L2 Chain.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/create-blast-dapp",
},
},
{
title: "ChatDev",
techStack: [
"Assignment Projects",
"ChatDev",
"JavaScript",
"Python",
"OpenAI",
],
description:
"Created Customized Software using Natural Language Idea (through Multi-Agent Collaboration) with ChatDev.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/projects_with_chatdev",
},
},
{
title: "Financial Analyst AI",
techStack: ["Assignment Project", "Python"],
description:
"Build using OpenAI assistant and financialmodelingprep APIs.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/financial-analyst-ai",
},
},
{
title: "Optimism AI",
techStack: ["Hackathon Project", "Blockchain", "AI"],
description:
"Unleash the real power of Web3 & AI with Optimism AI natively for optimism blockchain.",
link: {
label: "op-ai.xyz",
href: "https://www.op-ai.xyz/",
},
},
{
title: "AI Quiz App",
techStack: ["Side Project", "AI", "Quizzes"],
description:
"Test your prompt engineering, AI, and large language model skills by taking this simple 50-question quiz.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/prompting-quizzes",
},
},
{
title: "Blockchain Quiz App",
techStack: ["Side Project", "Blockchain", "Quizzes"],
description:
"Test your blockchain technology skills by taking this simple 50-question quiz.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/blockchain-quizzes",
},
},
{
title: "Blockchain Research Tools",
techStack: ["Side Project", "Crypto", "Tools"],
description:
"A curated list of great blockchain or crypto-based research tools, products, and services.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/crypto-research-tools",
},
},
{
title: "Learn Prompting Guide",
techStack: ["Translation", "Urdu Language", "AI"],
description:
"Complete Urdu Language Translation of Learn Prompting Official Documentation.",
link: {
label: "linkedin.com",
href: "https://www.linkedin.com/posts/asharibali_somethingbig-buildinpublic-ai-activity-7168993498921193474-wPFn?utm_source=share&utm_medium=member_desktop",
},
},
{
title: "Figma Clone",
techStack: ["Clone", "Nextjs", "TypeScript", "Figma"],
description:
"A Figma Clone built from scratch with Nextjs and TypeScript followed by a Youtube Tutorial.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/figma-clone",
},
},
{
title: "Threads Clone",
techStack: ["Clone", "Nextjs", "TypeScript"],
description:
"A Threads Clone built from scratch with Nextjs and TypeScript followed by a Youtube Tutorial.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/threads-clone",
},
},
{
title: "Next Auth V5",
techStack: ["Course", "TypeScript", "NextAuth.js"],
description:
"The NextAuth.js advance project built from scratch with Nextjs and TypeScript followed by a Youtube Tutorial.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/next-authjs-v5",
},
},
{
title: "Next.js App Router",
techStack: ["Course", "TypeScript", "Next.js"],
description:
"This dashboard app has 16 chapters, each on a different topic, by the official Next.js course.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/nextjs-dashboard",
},
},
{
title: "HTML, CSS, & JS Projects",
techStack: ["Side Projects", "HTML", "CSS", "JS"],
description:
"Develop several HTML, CSS, and JS projects to help me with my logic building.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/html-css-js-projects",
},
},
{
title: "Sigma Web Development",
techStack: ["Course", "Web Development", "JS"],
description:
"Complete Sigma Web Development Course followed by a Youtube Course.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/sigma-web-dev",
},
},
{
title: "100 Days of Code",
techStack: ["GIAIC", "Web Development", "TypeScript"],
description:
"100 Days of Coding Challenge | Starting from Very Basics to Advance Level | For 30k+ GIAIC Students.",
link: {
label: "linkedin.com",
href: "https://github.com/AsharibAli/100-days-of-code",
},
},
{
title: "100 Days of Designs",
techStack: ["Side Projects", "Figma", "Canva"],
description:
"To enhance my thinking in designs, I'm following 100 days of designs with DailyUi",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/100-Days-of-Designs",
},
},
{
title: "100 Days of Prompting",
techStack: ["Prompting Engineering", "AI", "LLM"],
description:
"To become a better Prompt Engineer, I'm following my own strategy to built different prompts.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/100-Days-of-Prompt-Engineering",
},
},
{
title: "100 Days of Blockchain",
techStack: ["Revision", "Blockchain", "Solidity"],
description:
"Revision of Solidity Language, and Smart Contracts Development using latest tools and stack.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/100-days-of-blockchain",
},
},
{
title: "30 Days of 30 Projects",
techStack: ["GIAIC", "NextJS", "TypeScript"],
description:
"30 Days of 30 Projects | One cool mini project each day using the latest tech stack for the next 30 days | For the 30k+ GIAIC Students.",
link: {
label: "github.com",
href: "https://github.com/AsharibAli/30days-of-30projects",
},
},
],
pinPoints: [
{
title: "Experience",
description: "3+ years in tech industry",
icon: "💼",
},
{
title: "Teaching",
description: "3k+ students taught onsite",
icon: "👨🏫",
},
{
title: "Community",
description: "Have 30k+ followers on social handles",
icon: "👥",
},
{
title: "Projects",
description: "100+ projects completed",
icon: "🚀",
},
{
title: "Open Source",
description: "50+ contributions",
icon: "✨",
},
{
title: "Hackathons",
description: "Won 5+ hackathons",
icon: "🏆",
},
{
title: "Feedbacks",
description: "10k+ positive feedbacks",
icon: "👍",
},
{
title: "Startups",
description: "5+ failed startups",
icon: "💸",
},
{
title: "Languages",
description: "English, Urdu",
icon: "🗣️",
},
{
title: "Hobbies",
description: "Reading, Writing, Coding, Traveling",
icon: "🎓",
},
{
title: "Age",
description: "21 years old (04-Sep-2004)",
icon: "🙆♂️",
},
{
title: "Status",
description: "Single",
icon: "💑",
},
],
} as const;