-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
386 lines (349 loc) · 17.4 KB
/
Copy pathindex.html
File metadata and controls
386 lines (349 loc) · 17.4 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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebDes Agency | MERN Stack & AI Integration Studio</title>
<meta name="description" content="WebDes Agency builds custom SaaS, AI API integrations, and business automation systems for ambitious founders in Dubai, US & EU.">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Anton&family=Condiment&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
bg: '#010828',
cream: '#EFF4FF',
neon: '#6FFF00',
},
fontFamily: {
grotesk: ['Anton', 'sans-serif'],
condiment: ['Condiment', 'cursive'],
mono: ['ui-monospace', 'SFMono-Regular', 'monospace'],
}
}
}
}
</script>
<style>
html { scroll-behavior: smooth; }
body { background-color: #010828; color: #EFF4FF; overflow-x: hidden; }
.liquid-glass {
background: rgba(255, 255, 255, 0.02);
background-blend-mode: luminosity;
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
border: none;
box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
position: relative;
overflow: hidden;
}
.liquid-glass::before {
content: '';
position: absolute;
inset: 0;
border-radius: inherit;
padding: 1.4px;
background: linear-gradient(180deg,
rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%,
rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
}
/* Animated 3D-ish starfield canvas backdrop */
#stars-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.neon-text { color: #6FFF00; }
.underline-bar { background: #6FFF00; height: 6px; }
@keyframes float { 0%,100%{transform: translateY(0px);} 50%{transform: translateY(-12px);} }
.animate-float { animation: float 6s ease-in-out infinite; }
@keyframes pulseGlow {
0%,100% { box-shadow: 0 0 25px rgba(111,255,0,0.15); }
50% { box-shadow: 0 0 50px rgba(111,255,0,0.35); }
}
.pulse-glow { animation: pulseGlow 3s ease-in-out infinite; }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #010828; }
::-webkit-scrollbar-thumb { background: #6FFF00; border-radius: 10px; }
</style>
</head>
<body class="relative">
<!-- 3D STARFIELD CANVAS BACKGROUND -->
<canvas id="stars-canvas"></canvas>
<!-- ============ NAVBAR ============ -->
<nav class="fixed top-6 left-0 right-0 z-50 flex justify-center px-4">
<div class="liquid-glass rounded-[28px] px-6 sm:px-10 py-4 flex items-center justify-between gap-8 max-w-5xl w-full">
<a href="#home" class="font-grotesk text-sm sm:text-base uppercase tracking-wider">WebDes<span class="neon-text">.Agency</span></a>
<div class="hidden lg:flex gap-8 font-grotesk text-xs uppercase tracking-widest">
<a href="#home" class="hover:text-neon transition">Home</a>
<a href="#about" class="hover:text-neon transition">About</a>
<a href="#services" class="hover:text-neon transition">Services</a>
<a href="#portfolio" class="hover:text-neon transition">Portfolio</a>
<a href="#contact" class="hover:text-neon transition">Contact</a>
</div>
<a href="#contact" class="liquid-glass rounded-full px-5 py-2 font-grotesk text-[11px] uppercase hover:bg-white/10 transition">Hire Us</a>
</div>
</nav>
<!-- ============ 1. HOME / HERO ============ -->
<section id="home" class="relative z-10 min-h-screen flex flex-col items-center justify-center px-6 pt-32 pb-20 text-center">
<div class="inline-block liquid-glass px-4 py-1.5 rounded-full text-xs font-grotesk uppercase mb-8 neon-text border border-neon/30">
⚡ MERN Stack & AI Integration Studio
</div>
<h1 class="font-grotesk uppercase leading-[1.05] text-[40px] sm:text-[60px] md:text-[75px] lg:text-[90px] max-w-5xl mx-auto">
We Build <span class="neon-text">Systems</span>,<br> Not Just Websites
</h1>
<p class="font-mono text-sm md:text-base uppercase text-cream/70 max-w-2xl mt-8">
High-ticket engineering for founders in Dubai, the US and the EU. We architect
custom SaaS platforms, integrate AI APIs into real production workflows, and
automate the operations that scale your business — built on the MERN stack
and modern AI infrastructure.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center mt-10">
<a href="#contact" class="pulse-glow bg-neon text-bg px-8 py-4 rounded-xl font-grotesk uppercase text-sm hover:scale-105 transition transform">
Book a Discovery Call
</a>
<a href="#portfolio" class="liquid-glass px-8 py-4 rounded-xl font-grotesk uppercase text-sm hover:bg-white/10 transition">
View Live Demos
</a>
</div>
<!-- floating orbit graphic -->
<div class="relative mt-20 w-full max-w-3xl h-48 hidden md:block">
<div class="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 w-48 h-48 rounded-full border border-neon/20 animate-float"></div>
<div class="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 w-80 h-80 rounded-full border border-cream/10"></div>
<div class="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 w-[28rem] h-[28rem] rounded-full border border-cream/5"></div>
<span class="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 font-condiment neon-text text-4xl mix-blend-exclusion">code & ai</span>
</div>
</section>
<!-- ============ 2. ABOUT US ============ -->
<section id="about" class="relative z-10 px-6 py-24 max-w-6xl mx-auto reveal">
<div class="flex flex-col lg:flex-row gap-12 items-start">
<div class="lg:w-1/2">
<h2 class="font-grotesk uppercase text-[32px] sm:text-[44px] md:text-[60px] leading-[1.05]">
Founder<br>to <span class="font-condiment neon-text normal-case mix-blend-exclusion -rotate-1 inline-block">Founder</span><br>Partner
</h2>
</div>
<div class="lg:w-1/2 font-mono text-sm md:text-base text-cream/80 space-y-4 uppercase">
<p>
WebDes Agency was founded to give serious operators a real engineering partner —
not an outsourced ticket queue. We sit on the same side of the table as you,
handling the backend heavy-lifting so you can focus on growth.
</p>
<p>
From WhatsApp automation CRMs to AI-powered SaaS platforms, our work is built
for businesses that depend on their software working every single day, 24/7,
without supervision.
</p>
<div class="liquid-glass rounded-3xl p-6 mt-6 space-y-2 normal-case">
<p class="text-cream font-semibold">Direct Contact</p>
<p class="text-cream/80 text-sm">WhatsApp / Phone: <span class="neon-text">+91 6291192742</span></p>
<p class="text-cream/80 text-sm">Email: <span class="neon-text">contact.webdesai@gmail.com</span></p>
</div>
</div>
</div>
<!-- Stats row -->
<div class="grid grid-cols-2 md:grid-cols-4 gap-6 mt-16">
<div class="liquid-glass rounded-2xl p-6 text-center">
<p class="font-grotesk text-3xl md:text-4xl neon-text">24/7</p>
<p class="font-mono text-xs uppercase text-cream/60 mt-2">Automated Uptime</p>
</div>
<div class="liquid-glass rounded-2xl p-6 text-center">
<p class="font-grotesk text-3xl md:text-4xl neon-text">MERN</p>
<p class="font-mono text-xs uppercase text-cream/60 mt-2">Core Stack</p>
</div>
<div class="liquid-glass rounded-2xl p-6 text-center">
<p class="font-grotesk text-3xl md:text-4xl neon-text">AI</p>
<p class="font-mono text-xs uppercase text-cream/60 mt-2">API-Native Builds</p>
</div>
<div class="liquid-glass rounded-2xl p-6 text-center">
<p class="font-grotesk text-3xl md:text-4xl neon-text">DXB/US/EU</p>
<p class="font-mono text-xs uppercase text-cream/60 mt-2">Markets Served</p>
</div>
</div>
</section>
<!-- ============ 3. SERVICES ============ -->
<section id="services" class="relative z-10 px-6 py-24 max-w-6xl mx-auto reveal">
<div class="text-center mb-16">
<h2 class="font-grotesk uppercase text-[32px] sm:text-[44px] md:text-[60px]">
What We <span class="font-condiment neon-text normal-case mix-blend-exclusion -rotate-1 inline-block">Build</span>
</h2>
<p class="font-mono text-sm uppercase text-cream/60 mt-4 max-w-2xl mx-auto">
Enterprise-grade engineering, delivered without the agency bloat.
</p>
</div>
<div class="grid md:grid-cols-3 gap-6">
<div class="liquid-glass rounded-[32px] p-8 hover:bg-white/5 transition">
<div class="text-neon text-3xl mb-4">⚙️</div>
<h3 class="font-grotesk uppercase text-xl mb-3">Custom SaaS Development</h3>
<p class="font-mono text-sm text-cream/70 leading-relaxed">
Full-stack SaaS platforms built on MongoDB, Express, React and Node —
multi-tenant architecture, role-based dashboards, billing, and scalable
infrastructure designed to handle real production load from day one.
</p>
</div>
<div class="liquid-glass rounded-[32px] p-8 hover:bg-white/5 transition">
<div class="text-neon text-3xl mb-4">🤖</div>
<h3 class="font-grotesk uppercase text-xl mb-3">AI & API Integrations</h3>
<p class="font-mono text-sm text-cream/70 leading-relaxed">
We embed LLM-powered features — chat agents, document automation,
intelligent auto-replies, and AI clones — directly into your existing
product using OpenAI, Anthropic, and other leading APIs.
</p>
</div>
<div class="liquid-glass rounded-[32px] p-8 hover:bg-white/5 transition">
<div class="text-neon text-3xl mb-4">🔁</div>
<h3 class="font-grotesk uppercase text-xl mb-3">Workflow Automation</h3>
<p class="font-mono text-sm text-cream/70 leading-relaxed">
From WhatsApp lead capture to CRM syncing and payment links, we connect
your tools with secure webhook pipelines so your business runs itself —
no manual data entry, no missed leads.
</p>
</div>
</div>
</section>
<!-- ============ 4. PORTFOLIO / LIVE DEMO ============ -->
<section id="portfolio" class="relative z-10 px-6 py-24 max-w-6xl mx-auto reveal">
<div class="flex flex-col sm:flex-row sm:items-end sm:justify-between mb-16 gap-6">
<h2 class="font-grotesk uppercase text-[32px] sm:text-[44px] md:text-[60px] leading-[1.05]">
Live AI<br><span class="ml-12 md:ml-24 inline-block">Builds</span>
</h2>
<a href="#contact" class="font-grotesk uppercase text-sm hover:text-neon transition flex items-center gap-2">
Request Full Demo Access →
</a>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="liquid-glass rounded-[32px] p-5 hover:bg-white/5 transition">
<div class="rounded-[24px] bg-gradient-to-br from-[#0a1f4d] to-[#010828] aspect-square flex items-center justify-center border border-white/5">
<span class="font-grotesk uppercase text-cream/40 text-sm">WhatsApp CRM</span>
</div>
<div class="liquid-glass rounded-[20px] px-5 py-4 mt-4 flex justify-between items-center">
<div>
<p class="text-[11px] uppercase text-cream/60 font-mono">Live Project</p>
<p class="text-base font-grotesk uppercase">Auto-Reply & Lead Bot</p>
</div>
</div>
</div>
<div class="liquid-glass rounded-[32px] p-5 hover:bg-white/5 transition">
<div class="rounded-[24px] bg-gradient-to-br from-[#0a1f4d] to-[#010828] aspect-square flex items-center justify-center border border-white/5">
<span class="font-grotesk uppercase text-cream/40 text-sm">AI Clone Agent</span>
</div>
<div class="liquid-glass rounded-[20px] px-5 py-4 mt-4 flex justify-between items-center">
<div>
<p class="text-[11px] uppercase text-cream/60 font-mono">MVP Deployment</p>
<p class="text-base font-grotesk uppercase">Custom AI Persona Bot</p>
</div>
</div>
</div>
<div class="liquid-glass rounded-[32px] p-5 hover:bg-white/5 transition">
<div class="rounded-[24px] bg-gradient-to-br from-[#0a1f4d] to-[#010828] aspect-square flex items-center justify-center border border-white/5">
<span class="font-grotesk uppercase text-cream/40 text-sm">SaaS Dashboard</span>
</div>
<div class="liquid-glass rounded-[20px] px-5 py-4 mt-4 flex justify-between items-center">
<div>
<p class="text-[11px] uppercase text-cream/60 font-mono">MERN Platform</p>
<p class="text-base font-grotesk uppercase">Multi-Tenant Admin Panel</p>
</div>
</div>
</div>
</div>
</section>
<!-- ============ 5. CONTACT / HIRE US ============ -->
<section id="contact" class="relative z-10 px-6 py-24 max-w-5xl mx-auto reveal">
<div class="text-center mb-12">
<h2 class="font-grotesk uppercase text-[32px] sm:text-[44px] md:text-[60px]">
Let's Build <span class="font-condiment neon-text normal-case mix-blend-exclusion -rotate-1 inline-block">Together</span>
</h2>
<p class="font-mono text-sm uppercase text-cream/60 mt-4">
Tell us about your project — we'll reply within 24 hours.
</p>
</div>
<div class="grid md:grid-cols-2 gap-8">
<!-- Form -->
<form id="hire-form" class="liquid-glass rounded-[32px] p-8 space-y-4">
<div>
<label class="block text-xs font-grotesk uppercase text-cream/60 mb-1">Full Name</label>
<input type="text" required class="w-full bg-white/5 border border-white/10 rounded-xl px-4 py-3 font-mono text-sm focus:outline-none focus:border-neon">
</div>
<div>
<label class="block text-xs font-grotesk uppercase text-cream/60 mb-1">Email</label>
<input type="email" required class="w-full bg-white/5 border border-white/10 rounded-xl px-4 py-3 font-mono text-sm focus:outline-none focus:border-neon">
</div>
<div>
<label class="block text-xs font-grotesk uppercase text-cream/60 mb-1">Project Details</label>
<textarea rows="4" required class="w-full bg-white/5 border border-white/10 rounded-xl px-4 py-3 font-mono text-sm focus:outline-none focus:border-neon"></textarea>
</div>
<button type="submit" class="w-full bg-neon text-bg py-4 rounded-xl font-grotesk uppercase hover:scale-[1.02] transition transform">
Submit Inquiry
</button>
</form>
<!-- Direct Info / Payment -->
<div class="space-y-6">
<div class="liquid-glass rounded-[32px] p-8">
<h3 class="font-grotesk uppercase text-lg mb-4">Direct Channels</h3>
<p class="font-mono text-sm text-cream/80">WhatsApp / Phone</p>
<p class="neon-text font-mono text-lg mb-4">+91 6291192742</p>
<p class="font-mono text-sm text-cream/80">Email</p>
<p class="neon-text font-mono text-lg">contact.webdesai@gmail.com</p>
</div>
<div class="liquid-glass rounded-[32px] p-8">
<h3 class="font-grotesk uppercase text-lg mb-4">Onboarding / Payments</h3>
<p class="font-mono text-sm text-cream/80 mb-2">For approved projects, retainers can be paid via UPI:</p>
<div class="bg-bg/60 border border-white/10 rounded-xl p-4 font-mono text-sm">
UPI ID: <span class="neon-text font-bold">6291192742@kotakbank</span>
</div>
<p class="font-mono text-xs text-cream/40 mt-4 uppercase">International clients: bank transfer / Stripe links provided after discovery call.</p>
</div>
</div>
</div>
</section>
<!-- ============ FOOTER ============ -->
<footer class="relative z-10 border-t border-white/10 py-10 px-6 text-center font-mono text-xs text-cream/40 uppercase">
<p>© 2026 WebDes Agency — MERN & AI Engineering for High-Ticket Founders.</p>
<p class="mt-2">Dubai · United States · European Union</p>
</footer>
<script>
// Simple starfield canvas (lightweight 3D-feel background)
const canvas = document.getElementById('stars-canvas');
const ctx = canvas.getContext('2d');
function resize() { canvas.width = window.innerWidth; canvas.height = window.innerHeight; }
resize();
window.addEventListener('resize', resize);
const stars = Array.from({length: 180}, () => ({
x: Math.random() * canvas.width,
y: Math.random() * canvas.height,
z: Math.random() * 1 + 0.2,
r: Math.random() * 1.5 + 0.3
}));
function draw() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.fillStyle = '#6FFF00';
stars.forEach(s => {
ctx.globalAlpha = s.z * 0.6;
ctx.beginPath();
ctx.arc(s.x, s.y, s.r, 0, Math.PI * 2);
ctx.fill();
s.y += s.z * 0.15;
if (s.y > canvas.height) { s.y = 0; s.x = Math.random() * canvas.width; }
});
ctx.globalAlpha = 1;
requestAnimationFrame(draw);
}
draw();
// Reveal-on-scroll
const reveals = document.querySelectorAll('.reveal');
const observer = new IntersectionObserver(entries => {
entries.forEach(e => { if (e.isIntersecting) e.target.classList.add('visible'); });
}, { threshold: 0.15 });
reveals.forEach(el => observer.observe(el));
// Form submit (demo)
document.getElementById('hire-form').addEventListener('submit', e => {
e.preventDefault();
alert('Thank you! Your inquiry has been received. We will contact you via WhatsApp or email shortly.');
e.target.reset();
});
</script>
</body>
</html>