feat: Pro limit 2,500/mo, website templating, cleanup
All checks were successful
Deploy to Production / Deploy to Server (push) Successful in 2m24s

- Set Pro tier limit to 2,500 PDFs/month (was unlimited/5000)
- Added Pro limit enforcement in usage middleware
- Updated landing page, JSON-LD, and Stripe product description
- Created build-time HTML templating (partials for nav/footer/styles)
- Source files in public/src/, partials in public/partials/
- Build script: node scripts/build-html.cjs
- Deleted stale backup file
- Fixed index.html nav logo to use <a> tag for consistency
This commit is contained in:
OpenClaw 2026-02-16 18:46:26 +00:00
parent d3015826e5
commit aab6bf3bee
15 changed files with 556 additions and 407 deletions

50
public/src/impressum.html Normal file
View file

@ -0,0 +1,50 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Impressum — DocFast</title>
<meta name="description" content="Legal notice and company information for DocFast API service.">
<link rel="canonical" href="https://docfast.dev/impressum">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>⚡</text></svg>">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
{{> styles_base}}
</head>
<body>
{{> nav}}
<main>
<div class="container">
<h1>Impressum</h1>
<p><em>Legal notice according to § 5 ECG and § 25 MedienG (Austrian law)</em></p>
<h2>Company Information</h2>
<p><strong>Company:</strong> Cloonar Technologies GmbH</p>
<p><strong>Address:</strong> Linzer Straße 192/1/2, 1140 Wien, Austria</p>
<p><strong>Email:</strong> <a href="mailto:legal@docfast.dev">legal@docfast.dev</a></p>
<h2>Legal Registration</h2>
<p><strong>Commercial Register:</strong> FN 631089y</p>
<p><strong>Court:</strong> Handelsgericht Wien</p>
<p><strong>VAT ID:</strong> ATU81280034</p>
<p><strong>GLN:</strong> 9110036145697</p>
<h2>Responsible for Content</h2>
<p>Cloonar Technologies GmbH<br>
Legal contact: <a href="mailto:legal@docfast.dev">legal@docfast.dev</a></p>
<h2>Disclaimer</h2>
<p>Despite careful content control, we assume no liability for the content of external links. The operators of the linked pages are solely responsible for their content.</p>
<p>The content of our website has been created with the greatest possible care. However, we cannot guarantee that the content is current, reliable or complete.</p>
<h2>EU Online Dispute Resolution</h2>
<p>Platform of the European Commission for Online Dispute Resolution (ODR): <a href="https://ec.europa.eu/consumers/odr" target="_blank" rel="noopener">https://ec.europa.eu/consumers/odr</a></p>
</div>
</main>
{{> footer}}
</body>
</html>