-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
366 lines (340 loc) · 12.8 KB
/
index.html
File metadata and controls
366 lines (340 loc) · 12.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Invoice Builder - Create Professional Invoices Instantly</title>
<meta
name="description"
content="Build professional invoices from Excel data in seconds. Drag, drop, and generate beautiful PDF invoices with our powerful invoice builder."
/>
<!-- Inter font from Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<!-- Tailwind CSS CDN for styling -->
<script src="https://cdn.tailwindcss.com"></script>
<style>
body {
font-family: "Inter", sans-serif;
}
.animate-fade-in {
animation: fadeIn 0.8s ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hover-lift {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
transform: translateY(-8px);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.gradient-text {
background: linear-gradient(to right, #2563eb, #9333ea);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.gradient-bg {
background: linear-gradient(
135deg,
#f1f5f9 0%,
#dbeafe 50%,
#e0e7ff 100%
);
}
.feature-icon {
transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
transform: scale(1.1);
}
</style>
</head>
<body class="min-h-screen gradient-bg">
<!-- Navigation -->
<nav class="container mx-auto px-6 py-4 flex items-center justify-between">
<div class="flex items-center space-x-2">
<div
class="w-8 h-8 bg-gradient-to-r from-blue-600 to-purple-600 rounded-lg flex items-center justify-center"
>
<span class="text-white font-bold text-sm">TIB</span>
</div>
<span class="text-xl font-bold text-gray-900">The Invoice Builder</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a
href="#features"
class="text-gray-600 hover:text-gray-900 transition-colors"
>Features</a
>
<a
href="#how-it-works"
class="text-gray-600 hover:text-gray-900 transition-colors"
>How it Works</a
>
<a
href="./builder.html"
class="border border-blue-200 text-blue-700 hover:bg-blue-50 px-4 py-2 rounded-md transition-colors"
>
Get Started
</a>
</div>
<!-- Mobile menu button (optional, not implemented for brevity based on provided example) -->
</nav>
<!-- Hero Section -->
<section class="container mx-auto px-6 py-20 text-center">
<div class="max-w-4xl mx-auto animate-fade-in">
<div
class="inline-flex items-center rounded-full bg-blue-100 text-blue-800 px-4 py-2 mb-6"
>
<span class="mr-2">✨</span>
Transform Your Invoicing Process
</div>
<h1
class="text-5xl md:text-7xl font-bold text-gray-900 mb-6 leading-tight"
>
Create Professional
<span class="gradient-text">Invoices</span>
<br />in Seconds
</h1>
<p class="text-xl text-gray-600 mb-8 max-w-2xl mx-auto leading-relaxed">
Transform your Excel data into beautiful, professional PDF invoices
instantly. No complex setup, no learning curve - just drag, drop, and
generate.
</p>
<div
class="flex flex-col sm:flex-row gap-4 justify-center items-center mb-12"
>
<a
href="./builder.html"
class="bg-gradient-to-r from-blue-600 to-purple-600 hover:from-blue-700 hover:to-purple-700 text-white px-8 py-4 text-lg font-semibold rounded-md shadow-lg hover:shadow-xl transition-all duration-300"
>
Start Building Invoices
</a>
<a
href="https://www.youtube.com/watch?v=UeGRaWFGoww"
class="border border-gray-300 text-gray-700 hover:bg-gray-50 px-8 py-4 text-lg rounded-md transition-colors"
>
View Demo
</a>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-16 bg-white/50">
<div class="container mx-auto px-6">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div class="text-center">
<div class="text-3xl md:text-4xl font-bold text-gray-900 mb-2">
100+
</div>
<div class="text-gray-600 font-medium">Invoices Generated</div>
</div>
<div class="text-center">
<div class="text-3xl md:text-4xl font-bold text-gray-900 mb-2">
20+
</div>
<div class="text-gray-600 font-medium">Happy Users</div>
</div>
<div class="text-center">
<div class="text-3xl md:text-4xl font-bold text-gray-900 mb-2">
99.9%
</div>
<div class="text-gray-600 font-medium">Uptime</div>
</div>
<div class="text-center">
<div class="text-3xl md:text-4xl font-bold text-gray-900 mb-2">
24/7
</div>
<div class="text-gray-600 font-medium">Available</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-4xl md:text-5xl font-bold text-gray-900 mb-6">
Everything You Need to Create
<span class="gradient-text">Perfect Invoices</span>
</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Our powerful invoice builder combines simplicity with professional
results, giving you all the tools you need without the complexity.
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<div
class="feature-card bg-white rounded-xl shadow-lg hover-lift p-8 border-0"
>
<div
class="feature-icon w-16 h-16 bg-gradient-to-r from-blue-500 to-cyan-500 rounded-2xl flex items-center justify-center mb-6"
>
<span class="text-2xl">📊</span>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-4">
Excel to PDF Magic
</h3>
<p class="text-gray-600 leading-relaxed">
Transform your Excel spreadsheets into professional PDF invoices
with a single drag and drop.
</p>
</div>
<div
class="feature-card bg-white rounded-xl shadow-lg hover-lift p-8 border-0"
>
<div
class="feature-icon w-16 h-16 bg-gradient-to-r from-purple-500 to-pink-500 rounded-2xl flex items-center justify-center mb-6"
>
<span class="text-2xl">🛡️</span>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-4">
Data Privacy & Local Processing
</h3>
<p class="text-gray-600 leading-relaxed">
All your data stays in your browser. We process invoices locally,
ensuring your information remains private and secure.
</p>
</div>
<div
class="feature-card bg-white rounded-xl shadow-lg hover-lift p-8 border-0"
>
<div
class="feature-icon w-16 h-16 bg-gradient-to-r from-green-500 to-emerald-500 rounded-2xl flex items-center justify-center mb-6"
>
<span class="text-2xl">⚡</span>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-4">
Bulk Generation
</h3>
<p class="text-gray-600 leading-relaxed">
Generate hundreds of invoices at once from your Excel data. Save
hours of manual work.
</p>
</div>
<div
class="feature-card bg-white rounded-xl shadow-lg hover-lift p-8 border-0"
>
<div
class="feature-icon w-16 h-16 bg-gradient-to-r from-orange-500 to-red-500 rounded-2xl flex items-center justify-center mb-6"
>
<span class="text-2xl">🏢</span>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-4">
Custom Branding
</h3>
<p class="text-gray-600 leading-relaxed">
Add your logo, company colors, and personal touch to every invoice
you create.
</p>
</div>
<div
class="feature-card bg-white rounded-xl shadow-lg hover-lift p-8 border-0"
>
<div
class="feature-icon w-16 h-16 bg-gradient-to-r from-indigo-500 to-purple-500 rounded-2xl flex items-center justify-center mb-6"
>
<span class="text-2xl">📥</span>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-4">
Instant Download
</h3>
<p class="text-gray-600 leading-relaxed">
Get your invoices as individual PDFs or download them all in a
convenient ZIP file.
</p>
</div>
<div
class="feature-card bg-white rounded-xl shadow-lg hover-lift p-8 border-0"
>
<div
class="feature-icon w-16 h-16 bg-gradient-to-r from-teal-500 to-blue-500 rounded-2xl flex items-center justify-center mb-6"
>
<span class="text-2xl">🚀</span>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-4">
No Registration
</h3>
<p class="text-gray-600 leading-relaxed">
Start creating invoices immediately. No sign-ups, no
subscriptions, no hassle.
</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section
id="how-it-works"
class="py-20 bg-gradient-to-r from-blue-600 to-purple-600 text-white text-center"
>
<div class="container mx-auto px-6 max-w-4xl">
<h2 class="text-4xl md:text-5xl font-bold mb-8">
Need More Advanced Features or Custom Designs?
</h2>
<p class="text-xl mb-12 text-blue-100 leading-relaxed">
I can help you build even more powerful tools and create unique, tailored designs for your invoicing needs.
Reach out, and let's discuss your vision!
</p>
<a href="mailto:harshiljani2002@gmail.com"
class="bg-white text-blue-600 hover:bg-gray-100 px-12 py-4 text-lg font-semibold rounded-md shadow-lg hover:shadow-xl transition-all duration-300 inline-block">
Contact Me
</a>
</div>
</section>
<script>
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach((anchor) => {
anchor.addEventListener("click", function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute("href"));
if (target) {
target.scrollIntoView({
behavior: "smooth",
block: "start",
});
}
});
});
// Add scroll-based animations for feature cards
const observerOptions = {
threshold: 0.1,
rootMargin: "0px 0px -50px 0px", // Adjust to trigger animation a bit earlier
};
const observer = new IntersectionObserver((entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
entry.target.style.opacity = "1";
entry.target.style.transform = "translateY(0)";
} else {
// Optional: Reset for re-animation if element scrolls out of view and back in
// entry.target.style.opacity = '0';
// entry.target.style.transform = 'translateY(20px)';
}
});
}, observerOptions);
// Observe all feature cards for animation
document.querySelectorAll(".feature-card").forEach((card) => {
card.style.opacity = "0";
card.style.transform = "translateY(20px)";
card.style.transition = "opacity 0.6s ease, transform 0.6s ease";
observer.observe(card);
});
// Example: You can add more specific interactions here if needed
// For instance, the "View Demo" button doesn't currently do anything specific
// but it's a good place to add modal or video pop-ups.
</script>
</body>
</html>