-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
307 lines (262 loc) · 9.84 KB
/
index.html
File metadata and controls
307 lines (262 loc) · 9.84 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Meta -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Virati Akiranandhan Reddy" />
<title>Zero Merge Conflicts</title>
<!-- Primary SEO -->
<meta name="description" content="Zero Merge Conflicts is an experimental digital lab for rapid prototyping, architectural exploration, and technical drafts. A high-fidelity workspace by Virati Akiranandhan Reddy." />
<meta name="keywords" content="Zero Merge Conflicts, Ethereal Lab, experimental workspace, prototyping lab, software architecture, developer portfolio, creative coding, Virati Akiranandhan Reddy" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://zeromergeconflicts.github.io/" />
<!-- Theme / UX -->
<meta name="theme-color" content="#bc77ff" />
<!-- Open Graph (LinkedIn, WhatsApp, Discord) -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Zero Merge Conflicts" />
<meta property="og:description" content="A high-fidelity experimental environment for prototyping, learning, and architectural exploration." />
<meta property="og:url" content="https://zeromergeconflicts.github.io/" />
<meta property="og:site_name" content="Zero Merge Conflicts" />
<!-- Structured Data (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "CreativeWork",
"name": "Zero Merge Conflicts",
"description": "An experimental digital laboratory for rapid prototyping, technical drafts, and architectural learning.",
"url": "https://zeromergeconflicts.github.io/",
"creator": {
"@type": "Person",
"name": "Virati Akiranandhan Reddy",
"url": "https://github.com/ViratiAkiraNandhanReddy"
}
}
</script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600&family=Space+Grotesk:wght@300;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
<style>
:root {
--bg: #050505;
--card-bg: rgba(10, 10, 10, 0.6);
--accent: #bc77ff; /* Soft Purple */
--cyan: #00f2ff;
--text: #ffffff;
--text-dim: rgba(255, 255, 255, 0.6);
--border: rgba(255, 255, 255, 0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; cursor: default; }
body {
background-color: var(--bg);
color: var(--text);
font-family: 'Plus Jakarta Sans', sans-serif;
overflow-x: hidden;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
canvas {
position: fixed;
top: 0; left: 0; z-index: -1;
filter: brightness(0.6);
}
/* Main Layout */
.dashboard {
width: 90%;
max-width: 1000px;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: auto auto;
gap: 20px;
padding: 40px 0;
z-index: 10;
}
.glass-tile {
background: var(--card-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--border);
border-radius: 28px;
padding: 30px;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.glass-tile:hover {
border-color: var(--accent);
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(188, 119, 255, 0.1);
}
/* Hero Section (Spans 2 columns) */
.hero {
grid-column: span 2;
display: flex;
flex-direction: column;
justify-content: center;
}
h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 3rem;
font-weight: 700;
letter-spacing: -2px;
line-height: 1;
margin-bottom: 15px;
background: linear-gradient(to bottom right, #fff 30%, var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.status-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(188, 119, 255, 0.1);
border: 1px solid rgba(188, 119, 255, 0.2);
color: var(--accent);
padding: 6px 14px;
border-radius: 100px;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 20px;
font-weight: 700;
}
/* Right Stats Side */
.side-panel {
grid-column: span 1;
display: flex;
flex-direction: column;
gap: 20px;
}
h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.1rem;
margin-bottom: 15px;
color: var(--text);
}
p { font-size: 0.95rem; color: var(--text-dim); line-height: 1.6; }
/* Social/Links List */
.links-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.btn {
padding: 15px;
border-radius: 18px;
background: rgba(255,255,255,0.03);
border: 1px solid var(--border);
text-decoration: none;
color: var(--text);
font-size: 0.85rem;
display: flex;
align-items: center;
gap: 10px;
transition: 0.3s;
}
.btn i { color: var(--accent); font-size: 1.1rem; }
.btn:hover {
background: var(--text);
color: var(--bg);
}
.btn:hover i { color: var(--bg); }
/* Footer area */
.footer-tile {
grid-column: span 3;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 40px;
}
.copyright { font-size: 0.75rem; color: var(--text-dim); letter-spacing: 1px; }
/* Mobile */
@media (max-width: 850px) {
.dashboard { grid-template-columns: 1fr; }
.hero, .side-panel, .footer-tile { grid-column: span 1; }
h1 { font-size: 2.2rem; }
}
</style>
</head>
<body>
<div class="dashboard">
<div class="glass-tile hero">
<div class="status-badge"><i class="fa-solid fa-bolt"></i> Workspace Active</div>
<h1>Zero Merge<br>Conflicts.</h1>
<p>A high-fidelity experimental environment dedicated to rapid prototyping, technical drafts, and architectural learning. Where code evolves before deployment.</p>
</div>
<div class="glass-tile side-panel">
<h2>The Mission</h2>
<p>Building artifacts in the void. This secondary hub ensures the main production remains pristine while I push limits here.</p>
<div style="margin-top: 15px; border-top: 1px solid var(--border); padding-top: 15px;">
<p style="font-size: 0.8rem;"><i class="fa-solid fa-code-branch" style="margin-right: 8px;"></i> 0 active conflicts</p>
</div>
</div>
<div class="glass-tile hero" style="grid-column: span 1;">
<h2>Connectivity</h2>
<div class="links-grid">
<a href="https://github.com/ViratiAkiraNandhanReddy" class="btn"><i class="fa-brands fa-github"></i> GitHub</a>
<a href="https://linkedin.com/in/viratiakiranandhanreddy" class="btn"><i class="fa-brands fa-linkedin"></i> LinkedIn</a>
<a href="https://instagram.com/viratiakiranandhanreddy" class="btn"><i class="fa-brands fa-instagram"></i> Instagram</a>
<a href="https://youtube.com/@ViratiAkiraNandhanReddy" class="btn"><i class="fa-brands fa-youtube"></i> YouTube</a>
</div>
</div>
<div class="glass-tile hero" style="grid-column: span 2;">
<h2>Laboratory Protocols</h2>
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 20px;">
<p><i class="fa-solid fa-microscope" style="color: var(--accent); margin-right: 10px;"></i> Prototyping ideas with non-standard libraries.</p>
<p><i class="fa-solid fa-book-sparkles" style="color: var(--cyan); margin-right: 10px;"></i> Documenting failures to accelerate future success.</p>
</div>
</div>
<div class="glass-tile footer-tile">
<div class="copyright">© 2026 VIRATI AKIRANANDHAN REDDY</div>
<div class="copyright" style="font-family: 'Space Grotesk'; opacity: 0.4;">zeromergeconflicts.io</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/three@0.158.0/build/three.min.js"></script>
<script>
let scene, camera, renderer, mesh;
init();
animate();
function init() {
scene = new THREE.Scene();
camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
camera.position.z = 15;
renderer = new THREE.WebGLRenderer({ antialias: true, alpha: true });
renderer.setSize(window.innerWidth, window.innerHeight);
renderer.setPixelRatio(window.devicePixelRatio);
document.body.appendChild(renderer.domElement);
// Create a wavy plane (Neural Mesh)
const geometry = new THREE.PlaneGeometry(50, 50, 40, 40);
const material = new THREE.MeshBasicMaterial({
color: 0xbc77ff,
wireframe: true,
transparent: true,
opacity: 0.15
});
mesh = new THREE.Mesh(geometry, material);
mesh.rotation.x = -Math.PI / 3;
scene.add(mesh);
window.addEventListener('resize', () => {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize(window.innerWidth, window.innerHeight);
});
}
function animate() {
requestAnimationFrame(animate);
// Wave Logic
const time = Date.now() * 0.001;
const position = mesh.geometry.attributes.position;
for (let i = 0; i < position.count; i++) {
const x = position.getX(i);
const y = position.getY(i);
const z = Math.sin(x * 0.3 + time) * Math.cos(y * 0.3 + time) * 1.5;
position.setZ(i, z);
}
position.needsUpdate = true;
mesh.rotation.z += 0.001;
renderer.render(scene, camera);
}
</script>
</body>
</html>