-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
281 lines (254 loc) · 8.64 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DIS IS SAKSHAM</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
body {
background-color: #000;
color: #fff;
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Hero Section */
.hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(45deg, rgba(0,0,30,0.5), rgba(30,0,30,0.5));
text-align: center;
}
.hero h1 {
font-size: 4rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.5rem;
color: #ccc;
}
/* Projects Section */
.projects {
padding: 100px 0;
}
.section-title {
font-size: 2.5rem;
margin-bottom: 3rem;
text-align: center;
}
.project-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.project-card {
background: #111;
border-radius: 10px;
padding: 2rem;
transition: transform 0.3s ease;
}
.project-card:hover {
transform: translateY(-5px);
}
.project-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.tech-stack {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin: 1rem 0;
}
.tech-tag {
background: #222;
padding: 0.3rem 0.8rem;
border-radius: 20px;
font-size: 0.9rem;
color: #ccc;
}
/* Skills Section */
.skills {
padding: 100px 0;
background: #111;
}
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.skill-category {
background: #000;
padding: 2rem;
border-radius: 10px;
}
.skill-category h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #fff;
}
.skill-list {
list-style: none;
}
.skill-list li {
color: #ccc;
margin-bottom: 0.5rem;
}
/* Social Links */
.social {
padding: 100px 0;
}
.social-links {
display: flex;
justify-content: center;
gap: 2rem;
}
.social-link {
color: #fff;
text-decoration: none;
font-size: 1.2rem;
padding: 1rem 2rem;
border: 2px solid #333;
border-radius: 5px;
transition: all 0.3s ease;
}
.social-link:hover {
background: #333;
transform: translateY(-3px);
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.2rem;
}
.project-grid {
grid-template-columns: 1fr;
}
.social-links {
flex-direction: column;
align-items: center;
}
}
</style>
<script defer src="https://cloud.umami.is/script.js" data-website-id="2fb713ef-2526-4a11-bc70-4bc144a6a111"></script>
</head>
<body>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h1>DIS IS SAKSHAM</h1>
<p>Building scalable systems </p>
</div>
</section>
<!-- Projects Section -->
<section class="projects">
<div class="container">
<h2 class="section-title">PROJEKTS</h2>
<div class="project-grid">
<div class="project-card">
<h3>telegram and discord bots</h3>
<p>the bots helped several servers and channels to grow substantially as it provides the direct search in whenever mentioned without loosing so much time , and energy</p>
<div class="tech-stack">
<span class="tech-tag">NodeJS , DiscordJS</span>
<span class="tech-tag">Python</span>
</div>
</div>
<div class="project-card">
<h3>Real-time Analytics Engine</h3>
<p>Built a distributed real-time analytics engine processing 5TB data daily.</p>
<div class="tech-stack">
<span class="tech-tag">Apache Kafka</span>
<span class="tech-tag">Elasticsearch</span>
<span class="tech-tag">Go</span>
<span class="tech-tag">Redis</span>
</div>
</div>
<div class="project-card">
<h3>Microservices Migration</h3>
<p>Led the migration of a monolithic application to microservices architecture.</p>
<div class="tech-stack">
<span class="tech-tag">Docker</span>
<span class="tech-tag">Kubernetes</span>
<span class="tech-tag">Node.js</span>
<span class="tech-tag">MongoDB</span>
</div>
</div>
<div class="project-card">
<h3>krom browser</h3>
<p>the entirely different browser , which is specifically made for power users with their power and time in mind (projekt incomplete as lack of resources)</p>
<div class="tech-stack">
<span class="tech-tag">htmk , python parser knowledge</span>
<span class="tech-tag">rust</span>
<span class="tech-tag">C/C++</span>
<span class="tech-tag">MongoDB(typical use)</span>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section class="skills">
<div class="container">
<h2 class="section-title">Skill Set</h2>
<div class="skills-grid">
<div class="skill-category">
<h3>Backend</h3>
<ul class="skill-list">
<li>deno</li>
<li>Python</li>
<li>Node.js</li>>
<li>rust</li>
<li>c/c++/C#</li
</ul>
</div>
<div class="skill-category">
<h3>Infrastructure</h3>
<ul class="skill-list">
<li>AWS</li>
<li>Kubernetes</li>
<li>Docker</li>
<li>Terraform</li>
</ul>
</div>
<div class="skill-category">
<h3>Databases</h3>
<ul class="skill-list">
<li>MongoDB</li>
</ul>
</div>
<div class="skill-category">
<h3>Frontend</h3>
<ul class="skill-list">
<li>React</li>
<li>Vue.js</li>
<li>GraphQL</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Social Links -->
<section class="social">
<div class="container">
<h2 class="section-title">Connect</h2>
<div class="social-links">
<a href="https://twitter.com/saksham6068" class="social-link">Twitter</a>
<a href="https://github.com/sakshamred" class="social-link">GitHub</a>
</div>
</div>
</section>
</body>
</html>