This repository was archived by the owner on Mar 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
269 lines (249 loc) · 14.2 KB
/
index.html
File metadata and controls
269 lines (249 loc) · 14.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>InvoiceFlow - Simple EU E-Invoicing for Freelancers</title>
<meta name="description" content="Create Peppol and Finvoice compliant e-invoices in minutes. Built for EU freelancers and micro-businesses. No bloated ERP needed.">
<meta name="keywords" content="e-invoicing, Peppol, Finvoice, EU invoicing, freelancer invoicing, Finland invoicing, electronic invoice">
<link rel="canonical" href="https://bonskari.github.io/invoiceflow/">
<style>
:root {
--primary: #2563eb;
--primary-dark: #1d4ed8;
--bg: #f8fafc;
--text: #1e293b;
--muted: #64748b;
--border: #e2e8f0;
--card: #ffffff;
--accent: #10b981;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
/* Hero */
.hero { padding: 80px 0 60px; text-align: center; }
.hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.2rem; color: var(--muted); max-width: 600px; margin: 0 auto 32px; }
.hero .badge { display: inline-block; background: #dbeafe; color: var(--primary); padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; }
.cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 32px; border-radius: 8px; font-size: 1rem; font-weight: 600; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-secondary { background: white; color: var(--text); border: 2px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
/* Pain points */
.pain { padding: 60px 0; text-align: center; }
.pain h2 { font-size: 1.8rem; margin-bottom: 12px; }
.pain .subtitle { color: var(--muted); margin-bottom: 40px; font-size: 1.05rem; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.pain-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 28px; text-align: left; }
.pain-card .icon { font-size: 2rem; margin-bottom: 12px; }
.pain-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.pain-card p { color: var(--muted); font-size: 0.95rem; }
/* Features */
.features { padding: 60px 0; }
.features h2 { font-size: 1.8rem; text-align: center; margin-bottom: 40px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary); }
.feature p { color: var(--muted); font-size: 0.95rem; }
/* Pricing */
.pricing { padding: 60px 0; text-align: center; }
.pricing h2 { font-size: 1.8rem; margin-bottom: 12px; }
.pricing .subtitle { color: var(--muted); margin-bottom: 40px; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.price-card { background: var(--card); border: 2px solid var(--border); border-radius: 12px; padding: 32px; }
.price-card.popular { border-color: var(--primary); position: relative; }
.price-card.popular::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 4px 16px; border-radius: 12px; font-size: 0.8rem; font-weight: 600; }
.price-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.price-card .price { font-size: 2.2rem; font-weight: 800; margin-bottom: 4px; }
.price-card .price span { font-size: 1rem; color: var(--muted); font-weight: 400; }
.price-card .desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; }
.price-card ul { list-style: none; text-align: left; margin-bottom: 24px; }
.price-card ul li { padding: 6px 0; font-size: 0.95rem; }
.price-card ul li::before { content: '✓ '; color: var(--accent); font-weight: bold; }
/* Compliance */
.compliance { padding: 60px 0; text-align: center; background: #f1f5f9; margin: 40px 0; }
.compliance h2 { font-size: 1.8rem; margin-bottom: 12px; }
.compliance p { color: var(--muted); max-width: 700px; margin: 0 auto 24px; }
.compliance .countries { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.compliance .country { background: white; padding: 16px 24px; border-radius: 8px; border: 1px solid var(--border); }
.compliance .country strong { display: block; }
.compliance .country span { font-size: 0.85rem; color: var(--muted); }
/* Waitlist */
.waitlist { padding: 80px 0; text-align: center; }
.waitlist h2 { font-size: 1.8rem; margin-bottom: 12px; }
.waitlist p { color: var(--muted); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.waitlist form { display: flex; gap: 12px; max-width: 450px; margin: 0 auto; }
.waitlist input { flex: 1; padding: 14px 16px; border: 2px solid var(--border); border-radius: 8px; font-size: 1rem; }
.waitlist input:focus { outline: none; border-color: var(--primary); }
#waitlist-msg { margin-top: 12px; font-size: 0.95rem; }
/* Footer */
footer { padding: 40px 0; text-align: center; color: var(--muted); font-size: 0.85rem; border-top: 1px solid var(--border); }
@media (max-width: 768px) {
.hero h1 { font-size: 2rem; }
.waitlist form { flex-direction: column; }
.cta-group { flex-direction: column; align-items: center; }
}
</style>
</head>
<body>
<section class="hero">
<div class="container">
<div class="badge">EU E-Invoicing Mandate Coming 2026-2027</div>
<h1>E-Invoicing Made <span>Simple</span></h1>
<p>Create Peppol and Finvoice compliant e-invoices in minutes. Built for freelancers and micro-businesses who don't need bloated ERP software.</p>
<div class="cta-group">
<a href="#waitlist" class="btn btn-primary">Join the Waitlist</a>
<a href="#pricing" class="btn btn-secondary">See Pricing</a>
</div>
</div>
</section>
<section class="pain">
<div class="container">
<h2>The Problem</h2>
<p class="subtitle">EU e-invoicing mandates are coming. Current options are terrible for small businesses.</p>
<div class="pain-grid">
<div class="pain-card">
<div class="icon">💸</div>
<h3>Visma costs 30-100€/month</h3>
<p>Enterprise software with 100 features you'll never use. You just need to send compliant invoices.</p>
</div>
<div class="pain-card">
<div class="icon">😤</div>
<h3>Basware is free but painful</h3>
<p>The free government tool works... technically. The UX makes you want to throw your laptop.</p>
</div>
<div class="pain-card">
<div class="icon">⏰</div>
<h3>Deadlines are approaching fast</h3>
<p>Belgium Jan 2026, France Sep 2026, Germany 2027. Finland already requires Finvoice for government.</p>
</div>
</div>
</div>
</section>
<section class="features">
<div class="container">
<h2>What InvoiceFlow Does</h2>
<div class="feature-grid">
<div class="feature">
<h3>Peppol & Finvoice Compliant</h3>
<p>Generates valid UBL 2.1 (Peppol) and Finvoice 3.0 XML. Passes all validation checks.</p>
</div>
<div class="feature">
<h3>Simple Web Interface</h3>
<p>Fill in your details, add line items, click send. No training needed. Works on mobile.</p>
</div>
<div class="feature">
<h3>PDF + E-Invoice Together</h3>
<p>Creates both a human-readable PDF and the machine-readable XML. Send either or both.</p>
</div>
<div class="feature">
<h3>Client Management</h3>
<p>Save your clients and their details. Auto-fill for repeat invoices. Track payment status.</p>
</div>
<div class="feature">
<h3>Finnish Tax Integration</h3>
<p>Correct VAT handling for Finnish businesses. EU reverse charge supported. MyTax-ready reports.</p>
</div>
<div class="feature">
<h3>API Available</h3>
<p>REST API for developers who want to generate e-invoices programmatically from their own systems.</p>
</div>
</div>
</div>
</section>
<section class="compliance">
<div class="container">
<h2>EU E-Invoicing Timeline</h2>
<p>E-invoicing is becoming mandatory across the EU. Don't wait until the deadline.</p>
<div class="countries">
<div class="country"><strong>Belgium</strong><span>Jan 2026 (B2B)</span></div>
<div class="country"><strong>France</strong><span>Sep 2026 (B2B)</span></div>
<div class="country"><strong>Germany</strong><span>Jan 2027 (B2B)</span></div>
<div class="country"><strong>Finland</strong><span>Now (B2G)</span></div>
<div class="country"><strong>Spain</strong><span>2027 (planned)</span></div>
</div>
</div>
</section>
<section class="pricing" id="pricing">
<div class="container">
<h2>Simple Pricing</h2>
<p class="subtitle">No contracts. Cancel anytime. All plans include Peppol compliance.</p>
<div class="price-grid">
<div class="price-card">
<h3>Starter</h3>
<div class="price">9€ <span>/month</span></div>
<p class="desc">For freelancers just getting started</p>
<ul>
<li>10 invoices/month</li>
<li>Peppol & Finvoice</li>
<li>PDF generation</li>
<li>1 business profile</li>
</ul>
<a href="#waitlist" class="btn btn-secondary" style="width:100%">Join Waitlist</a>
</div>
<div class="price-card popular">
<h3>Professional</h3>
<div class="price">19€ <span>/month</span></div>
<p class="desc">For active freelancers and small businesses</p>
<ul>
<li>50 invoices/month</li>
<li>All formats supported</li>
<li>Client management</li>
<li>Payment tracking</li>
<li>API access</li>
</ul>
<a href="#waitlist" class="btn btn-primary" style="width:100%">Join Waitlist</a>
</div>
<div class="price-card">
<h3>Business</h3>
<div class="price">39€ <span>/month</span></div>
<p class="desc">For growing businesses with volume</p>
<ul>
<li>Unlimited invoices</li>
<li>All formats + custom templates</li>
<li>Multi-user access</li>
<li>Tax reports (MyTax)</li>
<li>Priority support</li>
<li>Full API access</li>
</ul>
<a href="#waitlist" class="btn btn-secondary" style="width:100%">Join Waitlist</a>
</div>
</div>
</div>
</section>
<section class="waitlist" id="waitlist">
<div class="container">
<h2>Get Early Access</h2>
<p>Join the waitlist and be the first to try InvoiceFlow. Early adopters get 50% off for life.</p>
<form id="waitlist-form" onsubmit="return handleWaitlist(event)">
<button type="submit" class="btn btn-primary">Join Waitlist</button>
</form>
<div id="waitlist-msg"></div>
</div>
</section>
<footer>
<div class="container">
<p>© 2026 InvoiceFlow. All rights reserved.</p>
</div>
</footer>
<script>
function handleWaitlist(e) {
e.preventDefault();
const email = document.getElementById('waitlist-email').value;
const msg = document.getElementById('waitlist-msg');
// Store in localStorage for now, will connect to backend later
const waitlist = JSON.parse(localStorage.getItem('invoiceflow_waitlist') || '[]');
waitlist.push({ email, timestamp: new Date().toISOString() });
localStorage.setItem('invoiceflow_waitlist', JSON.stringify(waitlist));
msg.innerHTML = '<span style="color: #10b981; font-weight: 600;">You\'re on the list! We\'ll notify you when InvoiceFlow launches.</span>';
document.getElementById('waitlist-email').value = '';
return false;
}
</script>
</body>
</html>