-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtechindex.html
70 lines (63 loc) · 2.59 KB
/
techindex.html
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
<!-- Web Development -->
<div class="project-category">
<h3>Web Development</h3>
</div>
<div class="tech-stack-grid">
<!-- React, Node.js, CSS3 -->
<!-- React -->
<div class="tech-icon-container">
<button
class="tech-icon-wrapper"
onclick="handleTechClick('react')"
onkeypress="handleTechKeypress(event, 'react')"
data-tooltip="React"
aria-label="Learn more about React"
tabindex="0"
>
<img class="tech-icon" src="assets/tech/React.svg" alt="React" />
</button>
<span class="tech-label">React</span>
</div>
<!-- Node.js -->
<div class="tech-icon-container">
<button
class="tech-icon-wrapper"
onclick="handleTechClick('nodejs')"
onkeypress="handleTechKeypress(event, 'nodejs')"
data-tooltip="Node.js"
aria-label="Learn more about Node.js"
tabindex="0"
>
<img class="tech-icon" src="assets/tech/Node.js.svg" alt="Node.js" />
</button>
<span class="tech-label">NodeJS</span>
</div>
</div>
<!-- AI & Machine Learning -->
<div class="project-category">
<h3>AI & ML</h3>
</div>
<div class="tech-stack-grid">
<!-- Python, PyTorch -->
</div>
<!-- Backend & APIs -->
<div class="project-category">
<h3>Backend Systems</h3>
</div>
<div class="tech-stack-grid">
<!-- Flask, Node.js -->
</div>
<!-- Cloud Infrastructure -->
<div class="project-category">
<h3>Cloud Infrastructure</h3>
</div>
<div class="tech-stack-grid">
<!-- AWS, NGINX -->
</div>
<!-- Data Engineering -->
<div class="project-category">
<h3>Data Pipeline</h3>
</div>
<div class="tech-stack-grid">
<!-- PostgreSQL, Python -->
</div>