-
Notifications
You must be signed in to change notification settings - Fork 0
/
.text
81 lines (81 loc) · 2.61 KB
/
.text
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
.
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── next-env.d.ts
├── next.config.js
├── package.json
├── postcss.config.js
├── src
│ ├── app
│ │ ├── layout.tsx
│ │ ├── not-found.tsx
│ │ └── page.tsx
│ ├── components
│ │ ├── buttons
│ │ │ ├── Button.tsx
│ │ │ ├── DarkModeButton.tsx
│ │ │ ├── Link.tsx
│ │ │ └── NavButton.tsx
│ │ ├── index.ts
│ │ ├── lists
│ │ │ ├── ListItem.tsx
│ │ │ └── TabList.tsx
│ │ ├── skills
│ │ │ ├── Skill.tsx
│ │ │ └── SkillIcon.tsx
│ │ ├── socials
│ │ │ ├── SocialIcon.tsx
│ │ │ └── SocialLink.tsx
│ │ └── ui
│ │ ├── AuthorImage.tsx
│ │ ├── Cursor.tsx
│ │ ├── FeaturedProject.tsx
│ │ ├── ProjectCard.tsx
│ │ ├── ShowLottie.tsx
│ │ ├── Sidebar.tsx
│ │ └── Wrapper.tsx
│ ├── containers
│ │ ├── About.tsx
│ │ ├── Contact.tsx
│ │ ├── Email.tsx
│ │ ├── Experience.tsx
│ │ ├── FeaturedProjects.tsx
│ │ ├── Hero.tsx
│ │ ├── Projects.tsx
│ │ ├── Skills.tsx
│ │ ├── Social
│ │ │ ├── SocialLinks.tsx
│ │ │ └── index.tsx
│ │ ├── index.ts
│ │ └── layout
│ │ ├── Footer.tsx
│ │ ├── Layout.tsx
│ │ └── Navbar.tsx
│ └── lib
│ ├── content
│ │ ├── about.ts
│ │ ├── contact.ts
│ │ ├── experience.ts
│ │ ├── featured-projects.ts
│ │ ├── footer.ts
│ │ ├── hero.ts
│ │ ├── navbar.ts
│ │ ├── portfolio.ts
│ │ ├── projects.ts
│ │ ├── skills.ts
│ │ └── social.ts
│ ├── hooks
│ │ ├── use-theme.tsx
│ │ └── use-window-width.tsx
│ ├── types
│ │ ├── index.ts
│ │ └── sections.ts
│ └── utils
│ ├── config.ts
│ ├── fonts.ts
│ └── helper.ts
├── tailwind.config.js
├── text
├── tsconfig.json
└── yarn.lock