-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
193 lines (147 loc) · 3.97 KB
/
index.html
File metadata and controls
193 lines (147 loc) · 3.97 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aayush Gupta</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
:root {
--primary: #6C63FF;
--secondary: #e8a2ff;
--bg: #0a0a0a;
--text: #ffffff;
--card-bg: #161616;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: system-ui, -apple-system, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
min-height: 100vh;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 2rem;
}
.logo {
color: var(--primary);
font-weight: 600;
}
.nav-links {
display: flex;
gap: 2rem;
}
.nav-links a {
color: var(--text);
text-decoration: none;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 0rem;
}
h1 {
font-size: 4rem;
margin-bottom: 1rem;
background: linear-gradient(45deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
p {
margin-bottom: 1.5rem;
color: rgba(255, 255, 255, 0.8);
}
h2 {
color: var(--primary);
font-size: 1.5rem;
margin: 2rem 0 1.5rem;
}
.project-card {
background: var(--card-bg);
border-radius: 8px;
padding: 1.5rem;
margin-bottom: 1rem;
}
.project-card h3 {
color: var(--primary);
margin-bottom: 0.5rem;
}
h4 {
color : var(--primary);
font-size: 0.8 rem;
margin : 0.5rem 0 0.5rem;
}
h4 {
color : var(--primary);
font-size: 0.3 rem;
margin : 0.2rem 0 0.2rem;
}
.footer {
margin-top: 3rem;
}
.social-icons {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
}
.social-icons a {
color: var(--text);
font-size: 1.5rem;
text-decoration: none;
}
.credit {
color: rgba(247, 127, 0, 0.5);
font-size: 0.9rem;
}
</style>
</head>
<body>
<nav>
<div class="social-icons">
<!--THIS IS THE LOOOPING CONSTUCT, YOU CAN ADD MORE SOCIAL LINKS :> -->
<a href="https://github.com/aag-1" aria-label="github">
<i class="fab fa-github"></i>
</a>
</div>
</nav>
<main>
<div class="container">
<h1>Aayush Gupta</h1>
<p>First year CSE major at PES University.</p>
<p>I'm a backend developer who loves Python and SQL, building efficient tools, optimizing systems, and simplifying complex tasks through code. 🚀</p>
<h2>Featured Work</h2>
<div class="project-card">
<h4>CUSTOM TYPING SPEED WEB-APP- Oct 2024 [ Flask / Fastapi, python, html, css]</h4>
Curated a web-app that calculates your typing speed for code snippets and makes you comfortable and agile with the standard coding proceedure.
</div>
<div class="project-card">
<h4>STATIC SITE GENERATOR IN PYTHON - Jan 2025 [python, html, css, .md]</h4>
Created a static site generator in python, useful for maintaining and updating static sites such as blogs and portfolios.
</div>
<div class="project-card">
<h4>WEBSOCKET REAL-TIME CHAT WEB-APP - Feb 2025 [ fastapi, python, html, css]</h4>
Implemented websockets via fastapi to make a real time chat room
</div>
<div class="project-card">
<h4>HEALTHCARE RECOMENDATION SYSTEM - Oct 2024 [ flask, python, html, css]</h4>
Basic flask website for a hackathon in the field of healthcare.
</div>
<div class="footer">
<div class="generator_credit">
<a href="https://github.com/aag-1" aria-label="⚡- This static site was generated by PyStatGen -⚡">
<h5><span>⚡- This static site was generated by PyStatGen -⚡</span></h5>
</a>
</div>
</div>
</div>
</main>
</body>
</html>