Add new SVG logos for various services
@@ -0,0 +1,299 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>DocuNova – Intelligent Document Processing</title>
|
||||||
|
<script src="https://cdn.tailwindcss.com"></script>
|
||||||
|
<script defer src="https://cdn.jsdelivr.net/npm/@alpinejs/intersect@3.14.9/dist/cdn.min.js"></script>
|
||||||
|
<script src="https://unpkg.com/alpinejs@3.14.9/dist/cdn.min.js" defer></script>
|
||||||
|
<link rel="icon" href="/favicon.ico" />
|
||||||
|
</head>
|
||||||
|
<body class="bg-white text-gray-900" x-data="{ showImprint: false }">
|
||||||
|
<!-- Navigation -->
|
||||||
|
<header class="flex items-center justify-between px-6 py-4 shadow">
|
||||||
|
<div class="flex items-center space-x-2">
|
||||||
|
<img src="logo.svg" alt="DocuNova Logo" class="w-10 h-10" />
|
||||||
|
<span class="text-2xl font-bold text-blue-700">DocuNova</span>
|
||||||
|
</div>
|
||||||
|
<nav class="space-x-6">
|
||||||
|
<a href="#features" class="text-gray-600 hover:text-purple-700">Features</a>
|
||||||
|
<a href="#workflow" class="text-gray-600 hover:text-purple-700">Workflow</a>
|
||||||
|
<a href="#story" class="text-gray-600 hover:text-purple-700">Story</a>
|
||||||
|
<a href="#who" class="text-gray-600 hover:text-purple-700">Who Is It For?</a>
|
||||||
|
<a href="#imprint" class="text-gray-600 hover:text-purple-700" @click.prevent="showImprint = true">Impressum</a>
|
||||||
|
<a href="https://github.com/christianlouis/DocuNova" target="_blank" class="bg-purple-700 text-white px-4 py-2 rounded hover:bg-purple-800">View on GitHub</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- Hero Section -->
|
||||||
|
<section class="text-center py-20 px-6 bg-gradient-to-r from-blue-700 to-purple-700 text-white">
|
||||||
|
<div class="max-w-4xl mx-auto">
|
||||||
|
<h1 class="text-5xl font-extrabold mb-4">Intelligent Document Processing & Management</h1>
|
||||||
|
<p class="text-xl mb-6">
|
||||||
|
Simplify your document workflow. Organize and centralize your files and effortlessly go paperless.
|
||||||
|
</p>
|
||||||
|
<img src="hero.png" alt="Hero Illustration" class="mx-auto rounded-xl shadow-lg w-full max-w-3xl" />
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section id="story" class="py-20 px-6 bg-white">
|
||||||
|
<div class="max-w-4xl mx-auto">
|
||||||
|
<h2 class="text-3xl font-bold text-center mb-12">Christian’s Journey</h2>
|
||||||
|
|
||||||
|
<div class="space-y-24 md:grid md:grid-cols-2 md:gap-6 md:space-y-0 transition-all duration-700" x-data="{}">
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="bg-gray-50 rounded-xl shadow p-6 text-center opacity-0 transform translate-x-52 transition-all duration-1000 ease-out"
|
||||||
|
x-intersect.once="$el.classList.add('opacity-100', 'translate-x-0')"
|
||||||
|
>
|
||||||
|
<img src="story1.png" alt="Christian scanning documents" class="rounded-lg mb-6 w-full max-w-md mx-auto">
|
||||||
|
<p class="text-base text-gray-700">
|
||||||
|
Christian always believed in staying organized. Long before cloud storage and paperless offices became trendy, he had developed a meticulous routine: every invoice, receipt, and letter was scanned and saved as <code>scan-YYYYMMDDHHMMSS.pdf</code>.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="bg-gray-50 rounded-xl shadow p-6 text-center opacity-0 transform -translate-x-52 transition-all duration-1000 ease-out"
|
||||||
|
x-intersect.once="$el.classList.add('opacity-100', 'translate-x-0')"
|
||||||
|
>
|
||||||
|
<img src="story2.png" alt="Overwhelmed Christian" class="rounded-lg mb-6 w-full max-w-md mx-auto">
|
||||||
|
<p class="text-base text-gray-700">
|
||||||
|
But as the years went by, the volume grew. What started as a neat system became a digital jungle. Naming conventions slipped. Folders named “Misc” multiplied. Searching became a nightmare.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="bg-gray-50 rounded-xl shadow p-6 text-center opacity-0 transform translate-x-52 transition-all duration-1000 ease-out"
|
||||||
|
x-intersect.once="$el.classList.add('opacity-100', 'translate-x-0')"
|
||||||
|
>
|
||||||
|
<img src="story3.png" alt="Christian buried in documents" class="rounded-lg mb-6 w-full max-w-md mx-auto">
|
||||||
|
<p class="text-base text-gray-700">
|
||||||
|
Eventually, even finding a single document felt like digging through sand. OCR helped a little, but couldn’t understand context. Christian tried to reorganize, but the mess just grew. He wasn’t alone—others shared his pain.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="bg-gray-50 rounded-xl shadow p-6 text-center opacity-0 transform -translate-x-52 transition-all duration-1000 ease-out"
|
||||||
|
x-intersect.once="$el.classList.add('opacity-100', 'translate-x-0')"
|
||||||
|
>
|
||||||
|
<img src="story4.png" alt="Happy Christian using DocuNova" class="rounded-lg mb-6 w-full max-w-md mx-auto">
|
||||||
|
<p class="text-base text-gray-700">
|
||||||
|
Then came the breakthrough. With intelligent document processing, files were auto-tagged, renamed, and neatly filed. Christian could finally find anything in seconds—and get back to what really matters.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Features Section -->
|
||||||
|
<section id="features" class="py-20 px-6 bg-gray-50">
|
||||||
|
<div class="max-w-6xl mx-auto text-center">
|
||||||
|
<h2 class="text-3xl font-bold mb-10">Key Features</h2>
|
||||||
|
<div class="grid md:grid-cols-3 gap-8">
|
||||||
|
<div class="p-6 bg-white rounded-xl shadow">
|
||||||
|
<h3 class="text-xl font-semibold mb-2 text-blue-700">OCR</h3>
|
||||||
|
<p>Extract text from scanned PDFs using Azure Document Intelligence.</p>
|
||||||
|
</div>
|
||||||
|
<div class="p-6 bg-white rounded-xl shadow">
|
||||||
|
<h3 class="text-xl font-semibold mb-2 text-blue-700">Metadata Extraction</h3>
|
||||||
|
<p>Automatically identify document types, dates, and key details using OpenAI.</p>
|
||||||
|
</div>
|
||||||
|
<div class="p-6 bg-white rounded-xl shadow">
|
||||||
|
<h3 class="text-xl font-semibold mb-2 text-blue-700">PDF Conversion</h3>
|
||||||
|
<p>Convert Word, image, and email attachments to PDF using Gotenberg.</p>
|
||||||
|
</div>
|
||||||
|
<div class="p-6 bg-white rounded-xl shadow">
|
||||||
|
<h3 class="text-xl font-semibold mb-2 text-blue-700">Multi-Destination</h3>
|
||||||
|
<p>Send files to Dropbox, Nextcloud, S3, Paperless NGX, WebDAV, Google Drive, OneDrive, and more.</p>
|
||||||
|
</div>
|
||||||
|
<div class="p-6 bg-white rounded-xl shadow">
|
||||||
|
<h3 class="text-xl font-semibold mb-2 text-blue-700">IMAP Inbox Polling</h3>
|
||||||
|
<p>Pull documents from email inboxes automatically.</p>
|
||||||
|
</div>
|
||||||
|
<div class="p-6 bg-white rounded-xl shadow">
|
||||||
|
<h3 class="text-xl font-semibold mb-2 text-blue-700">Fully Self-Hosted</h3>
|
||||||
|
<p>Run everything on your own server using Docker, Redis, Celery, and FastAPI.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section id="workflow" class="py-24 px-6 bg-white">
|
||||||
|
<div class="max-w-6xl mx-auto text-center">
|
||||||
|
<h2 class="text-4xl font-bold mb-16">Your Document Pipeline</h2>
|
||||||
|
|
||||||
|
<!-- Step 1: Ingestion -->
|
||||||
|
<div class="mb-24">
|
||||||
|
<h3 class="text-2xl font-semibold text-blue-700 mb-4">Document Ingestion</h3>
|
||||||
|
<p class="text-lg text-gray-700 max-w-3xl mx-auto mb-10">
|
||||||
|
Your documents enter the system through a variety of inputs—from scanners to inboxes and drop folders.
|
||||||
|
DocuNova watches them all and picks up everything you throw at it.
|
||||||
|
</p>
|
||||||
|
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4 gap-8">
|
||||||
|
<div class="bg-gray-100 rounded-xl p-4 shadow">
|
||||||
|
<img src="workflow/scanner.png" alt="Scanner Upload" class="w-full h-auto rounded-lg mb-4">
|
||||||
|
<p class="text-sm text-gray-600">Upload from scanners with ADF or direct scan-to-folder support.</p>
|
||||||
|
</div>
|
||||||
|
<div class="bg-gray-100 rounded-xl p-4 shadow">
|
||||||
|
<img src="workflow/gmail.png" alt="Gmail" class="w-full h-auto rounded-lg mb-4">
|
||||||
|
<p class="text-sm text-gray-600">Connect Gmail inboxes and pull attachments using IMAP.</p>
|
||||||
|
</div>
|
||||||
|
<div class="bg-gray-100 rounded-xl p-4 shadow">
|
||||||
|
<img src="workflow/mailin.png" alt="Generic IMAP" class="w-full h-auto rounded-lg mb-4">
|
||||||
|
<p class="text-sm text-gray-600">Monitor any generic IMAP/POP3 mailbox for incoming documents.</p>
|
||||||
|
</div>
|
||||||
|
<div class="bg-gray-100 rounded-xl p-4 shadow">
|
||||||
|
<img src="workflow/upload.png" alt="FTP Upload" class="w-full h-auto rounded-lg mb-4">
|
||||||
|
<p class="text-sm text-gray-600">Upload files directly via web interface.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Step 2: Processing -->
|
||||||
|
<div class="mb-24">
|
||||||
|
<h3 class="text-2xl font-semibold text-purple-700 mb-4">Automated Document Processing</h3>
|
||||||
|
<p class="text-lg text-gray-700 max-w-3xl mx-auto mb-10">
|
||||||
|
Inside the DocuNova engine, your documents are transformed into structured data: OCR, metadata extraction, clean naming, and full-text indexing happen automatically.
|
||||||
|
</p>
|
||||||
|
<div class="bg-gray-100 rounded-xl p-6 shadow-lg">
|
||||||
|
<img src="workflow/processing.png" alt="Document Processing" class="mx-auto max-w-md sm:max-w-lg md:max-w-xl h-auto rounded-lg mb-6">
|
||||||
|
<ul class="text-left text-gray-700 text-base max-w-2xl mx-auto space-y-2 px-4">
|
||||||
|
<li>✓ PDF conversion via <strong>Gotenberg</strong></li>
|
||||||
|
<li>✓ OCR with <strong>Azure Document Intelligence</strong></li>
|
||||||
|
<li>✓ Metadata & date extraction via <strong>OpenAI</strong></li>
|
||||||
|
<li>✓ Summary generation, classification & consistent file naming</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Step 3: Distribution -->
|
||||||
|
<div class="mb-12">
|
||||||
|
<h3 class="text-2xl font-semibold text-teal-700 mb-4">Distribution & Export</h3>
|
||||||
|
<p class="text-lg text-gray-700 max-w-3xl mx-auto mb-10">
|
||||||
|
Once processed, documents are sent where they belong—your favorite cloud, local archive, document management system, or inbox.
|
||||||
|
</p>
|
||||||
|
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4 gap-8">
|
||||||
|
<div class="bg-gray-100 rounded-xl p-4 shadow">
|
||||||
|
<img src="workflow/dropbox.png" alt="Dropbox" class="w-full h-auto rounded-lg mb-4">
|
||||||
|
<p class="text-sm text-gray-600">Instantly sync to Dropbox for personal or team use.</p>
|
||||||
|
</div>
|
||||||
|
<div class="bg-gray-100 rounded-xl p-4 shadow">
|
||||||
|
<img src="workflow/nextcloud.png" alt="Nextcloud" class="w-full h-auto rounded-lg mb-4">
|
||||||
|
<p class="text-sm text-gray-600">Push to your own Nextcloud instance with tags.</p>
|
||||||
|
</div>
|
||||||
|
<div class="bg-gray-100 rounded-xl p-4 shadow">
|
||||||
|
<img src="workflow/paperless.png" alt="Paperless NGX" class="w-full h-auto rounded-lg mb-4">
|
||||||
|
<p class="text-sm text-gray-600">Hand off structured files to Paperless NGX for archiving.</p>
|
||||||
|
</div>
|
||||||
|
<div class="bg-gray-100 rounded-xl p-4 shadow">
|
||||||
|
<img src="workflow/onedrive.png" alt="OneDrive" class="w-full h-auto rounded-lg mb-4">
|
||||||
|
<p class="text-sm text-gray-600">Export to Microsoft OneDrive for office integration.</p>
|
||||||
|
</div>
|
||||||
|
<div class="bg-gray-100 rounded-xl p-4 shadow">
|
||||||
|
<img src="workflow/googledrive.png" alt="Google Drive" class="w-full h-auto rounded-lg mb-4">
|
||||||
|
<p class="text-sm text-gray-600">Route into folders in Google Drive automatically.</p>
|
||||||
|
</div>
|
||||||
|
<div class="bg-gray-100 rounded-xl p-4 shadow">
|
||||||
|
<img src="workflow/s3.png" alt="Amazon S3" class="w-full h-auto rounded-lg mb-4">
|
||||||
|
<p class="text-sm text-gray-600">Archive in Amazon S3 or MinIO with bucket rules.</p>
|
||||||
|
</div>
|
||||||
|
<div class="bg-gray-100 rounded-xl p-4 shadow">
|
||||||
|
<img src="workflow/email.png" alt="Email Forwarding" class="w-full h-auto rounded-lg mb-4">
|
||||||
|
<p class="text-sm text-gray-600">Send documents via email—great for approval loops or handoffs.</p>
|
||||||
|
</div>
|
||||||
|
<div class="bg-gray-100 rounded-xl p-4 shadow">
|
||||||
|
<img src="workflow/ftp.png" alt="FTP/SFTP" class="w-full h-auto rounded-lg mb-4">
|
||||||
|
<p class="text-sm text-gray-600">Use FTP and SFTP for automated file delivery.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Who Is It For Section -->
|
||||||
|
<section id="who" class="py-20 px-6">
|
||||||
|
<div class="max-w-6xl mx-auto">
|
||||||
|
<h2 class="text-3xl font-bold text-center mb-10">Who Is It For?</h2>
|
||||||
|
<div class="grid md:grid-cols-3 gap-8">
|
||||||
|
<div class="p-6 bg-white rounded-xl shadow text-center">
|
||||||
|
<h3 class="text-xl font-semibold text-purple-700 mb-2">Data Hoarders</h3>
|
||||||
|
<p>Index and enrich your 10,000+ PDFs automatically. No more chaotic archives.</p>
|
||||||
|
</div>
|
||||||
|
<div class="p-6 bg-white rounded-xl shadow text-center">
|
||||||
|
<h3 class="text-xl font-semibold text-purple-700 mb-2">Zero-Paper Enthusiasts</h3>
|
||||||
|
<p>Turn your household into a paperless fortress. DocuNova is your digital vault.</p>
|
||||||
|
</div>
|
||||||
|
<div class="p-6 bg-white rounded-xl shadow text-center">
|
||||||
|
<h3 class="text-xl font-semibold text-purple-700 mb-2">Tech-Savvy People</h3>
|
||||||
|
<p>Docker, API, IMAP, AI — if you know the stack, DocuNova puts you in control.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mt-16 text-center">
|
||||||
|
<a href="#" class="inline-block bg-purple-700 text-white px-6 py-3 rounded-lg shadow hover:bg-purple-800 transition">Back to Top</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Integration Logos -->
|
||||||
|
<section class="py-16 px-6 bg-gray-100">
|
||||||
|
<div class="max-w-6xl mx-auto text-center">
|
||||||
|
<h2 class="text-2xl font-semibold mb-6">Built With</h2>
|
||||||
|
<div class="flex flex-wrap justify-center gap-6">
|
||||||
|
<a href="https://gotenberg.dev/" target="_blank" rel="noopener noreferrer"><img src="logos/gotenberg.png" class="h-8" alt="Gotenberg" /></a>
|
||||||
|
<a href="https://fastapi.tiangolo.com/" target="_blank" rel="noopener noreferrer"><img src="logos/fastapi.svg" class="h-8" alt="FastAPI" /></a>
|
||||||
|
<a href="https://redis.io/" target="_blank" rel="noopener noreferrer"><img src="logos/redis.svg" class="h-8" alt="Redis" /></a>
|
||||||
|
<a href="https://docs.celeryq.dev/" target="_blank" rel="noopener noreferrer"><img src="logos/celery.png" class="h-8" alt="Celery" /></a>
|
||||||
|
<a href="https://goauthentik.io/" target="_blank" rel="noopener noreferrer"><img src="logos/authentik.svg" class="h-8" alt="Authentik" /></a>
|
||||||
|
<a href="https://www.sqlite.org/" target="_blank" rel="noopener noreferrer"><img src="logos/sqlite.svg" class="h-8" alt="SQLite" /></a>
|
||||||
|
<a href="https://openai.com/" target="_blank" rel="noopener noreferrer"><img src="logos/openai.svg" class="h-8" alt="OpenAI" /></a>
|
||||||
|
<a href="https://azure.microsoft.com/en-us/products/ai-services/ai-document-intelligence" target="_blank" rel="noopener noreferrer"><img src="logos/azure.svg" class="h-8" alt="Azure Document Intelligence" /></a>
|
||||||
|
<a href="https://tailwindcss.com/" target="_blank" rel="noopener noreferrer"><img src="logos/tailwind.svg" class="h-8" alt="Tailwind CSS" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Footer & Imprint -->
|
||||||
|
<footer class="py-6 text-center text-gray-500 text-sm">
|
||||||
|
© 2025 Christian Krakau-Louis. Built with ❤️ for digital organization.
|
||||||
|
<br />
|
||||||
|
<button @click="showImprint = true" class="text-blue-600 hover:underline">Impressum</button>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<!-- Impressum Modal -->
|
||||||
|
<div x-show="showImprint" class="fixed inset-0 bg-black bg-opacity-50 z-50 flex items-center justify-center">
|
||||||
|
<div @click.away="showImprint = false" class="bg-white rounded-lg shadow-lg p-6 max-w-xl w-full text-left text-sm">
|
||||||
|
<h2 class="text-2xl font-bold mb-4">Impressum</h2>
|
||||||
|
<p><strong>Angaben gemäß § 5 TMG</strong></p>
|
||||||
|
<p class="mt-2">
|
||||||
|
Christian Louis IT Beratung<br />
|
||||||
|
Alter Steinweg 3<br />
|
||||||
|
20459 Hamburg<br />
|
||||||
|
Deutschland
|
||||||
|
</p>
|
||||||
|
<p class="mt-4"><strong>Vertreten durch:</strong><br />Christian Krakau-Louis</p>
|
||||||
|
<p class="mt-4"><strong>Kontakt</strong><br />
|
||||||
|
Fax: +49 40 97074609<br />
|
||||||
|
E-Mail: <a href="mailto:christianlouis@gmail.com" class="text-blue-600 hover:underline">christianlouis@gmail.com</a>
|
||||||
|
</p>
|
||||||
|
<p class="mt-4"><strong>Umsatzsteuer-Identifikationsnummer gemäß §27a Umsatzsteuergesetz:</strong><br />
|
||||||
|
DE202899017
|
||||||
|
</p>
|
||||||
|
<p class="mt-4 text-xs text-gray-500">
|
||||||
|
Dieses Projekt ist Teil einer Open-Source-Initiative. Alle Rechte vorbehalten.
|
||||||
|
</p>
|
||||||
|
<button @click="showImprint = false" class="mt-6 text-blue-700 font-bold hover:underline">Schließen</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="currentColor" d="m17.212 20.404l-.108-.885q-.57-.125-.938-.33q-.368-.204-.7-.577l-.835.334l-.539-.815l.689-.577q-.165-.531-.165-1.035t.165-1.034l-.689-.577l.539-.816l.835.335q.332-.393.7-.588q.369-.195.938-.32l.108-.885h1l.107.885q.57.125.938.32t.7.588l.835-.335l.539.816l-.689.576q.166.531.166 1.035t-.166 1.035l.689.577l-.539.815l-.834-.335q-.333.373-.701.578q-.369.205-.938.33l-.107.885zm.5-1.731q.882 0 1.518-.635q.636-.636.636-1.519t-.636-1.518t-1.518-.636t-1.519.636t-.635 1.518t.635 1.519t1.518.635M4 18V6v4.435V10zm.616 1q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h4.981l2 2h7.789q.69 0 1.153.463T21 8.616v2.294q-.238-.152-.479-.265q-.24-.112-.521-.21v-1.82q0-.269-.173-.442T19.385 8h-8.19l-2-2h-4.58q-.269 0-.442.173T4 6.616v10.769q0 .269.173.442t.443.173h6.748q.055.275.131.515t.186.485z"/></svg>
|
||||||
|
After Width: | Height: | Size: 917 B |
@@ -0,0 +1,21 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="140" height="24" viewBox="0 0 124 24">
|
||||||
|
<style>
|
||||||
|
.icon {
|
||||||
|
fill: #3B82F6;
|
||||||
|
}
|
||||||
|
.text {
|
||||||
|
font-family: "Segoe UI", "Helvetica Neue", sans-serif;
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: bold;
|
||||||
|
fill: #3B82F6;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<!-- Folder+gear icon -->
|
||||||
|
<g class="icon" transform="translate(0, 0)">
|
||||||
|
<path d="m17.212 20.404l-.108-.885q-.57-.125-.938-.33q-.368-.204-.7-.577l-.835.334l-.539-.815l.689-.577q-.165-.531-.165-1.035t.165-1.034l-.689-.577l.539-.816l.835.335q.332-.393.7-.588q.369-.195.938-.32l.108-.885h1l.107.885q.57.125.938.32t.7.588l.835-.335l.539.816l-.689.576q.166.531.166 1.035t-.166 1.035l.689.577l-.539.815l-.834-.335q-.333.373-.701.578q-.369.205-.938.33l-.107.885zm.5-1.731q.882 0 1.518-.635q.636-.636.636-1.519t-.636-1.518t-1.518-.636t-1.519.636t-.635 1.518t.635 1.519t1.518.635M4 18V6v4.435V10zm.616 1q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h4.981l2 2h7.789q.69 0 1.153.463T21 8.616v2.294q-.238-.152-.479-.265q-.24-.112-.521-.21v-1.82q0-.269-.173-.442T19.385 8h-8.19l-2-2h-4.58q-.269 0-.442.173T4 6.616v10.769q0 .269.173.442t.443.173h6.748q.055.275.131.515t.186.485z"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<!-- Text -->
|
||||||
|
<text class="text" x="28" y="17">DocuNova</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,23 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 28.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#FD4B2D;}
|
||||||
|
</style>
|
||||||
|
<path class="st0" d="M511.8,131.1c-0.4-3.6-1.1-7.2-2-10.8c-0.3-1.1-0.7-2.3-1-3.4c-0.1-0.2-0.2-0.5-0.3-0.8
|
||||||
|
c-0.1-0.6-0.3-1.1-0.5-1.7c-0.2-0.6-0.4-1.2-0.6-1.7c-0.2-0.6-0.5-1.2-0.7-1.8c-0.3-0.6-0.6-1.2-0.8-1.8c-2-4.8-4.4-9.3-7.3-13.6
|
||||||
|
l-0.1-0.1c-0.8-1.1-1.5-2.1-2.3-3.2c-0.7-0.9-1.3-1.8-2-2.6c-0.8-0.9-1.6-1.9-2.4-2.8c-0.7-0.9-1.6-1.8-2.4-2.6
|
||||||
|
c-3.4-3.4-7.1-6.6-11-9.4c-0.9-0.6-1.8-1.3-2.8-1.9c-1.1-0.7-2.2-1.3-3.3-2c-2.1-1.2-4.3-2.4-6.5-3.4c-0.7-0.4-1.4-0.7-2.1-1
|
||||||
|
c-3.1-1.3-6.2-2.5-9.4-3.4c-1.2-0.4-2.4-0.7-3.7-1c-0.6-0.1-1.2-0.3-1.8-0.4c-3.6-0.8-7.2-1.3-10.9-1.6l-1.6-0.1c-0.3,0-0.5,0-0.8,0
|
||||||
|
c-1.2-0.1-2.5-0.1-3.7-0.1H200.5c-1.3,0-2.5,0-3.7,0.1c-0.3,0-0.5,0-0.8,0l-1.6,0.1c-3.7,0.3-7.3,0.8-10.9,1.6
|
||||||
|
c-0.6,0.1-1.2,0.2-1.8,0.4c-1.2,0.3-2.5,0.6-3.7,1c-3.2,0.9-6.3,2.1-9.4,3.4c-0.7,0.3-1.4,0.7-2.1,1c-2.3,1-4.4,2.2-6.5,3.4
|
||||||
|
c-1.1,0.6-2.2,1.3-3.3,2c-0.9,0.6-1.9,1.2-2.8,1.9c-3.4,2.4-6.6,5.1-9.6,8c-0.5,0.5-1,0.9-1.4,1.4l-0.1,0.1
|
||||||
|
c-0.8,0.8-1.6,1.7-2.4,2.6c-0.8,0.9-1.6,1.9-2.4,2.8c-0.7,0.9-1.3,1.7-2,2.6c-0.8,1.1-1.6,2.1-2.3,3.2l-0.1,0.1
|
||||||
|
c-2.9,4.3-5.3,8.9-7.3,13.6c-0.3,0.6-0.6,1.2-0.8,1.8c-0.2,0.6-0.5,1.2-0.7,1.8c-0.2,0.6-0.4,1.2-0.6,1.7c-0.1,0.6-0.3,1.1-0.5,1.7
|
||||||
|
c-0.1,0.2-0.2,0.5-0.3,0.8c-0.4,1.1-0.7,2.3-1,3.4c-0.9,3.5-1.6,7.1-2,10.8c-0.3,3-0.5,6.1-0.5,9.2v94.4c-0.8-1.1-1.5-2.2-2.3-3.2h0
|
||||||
|
c-12.6-17.1-31.4-34.3-52.3-34.3c-24,0-45.9,13.2-57.3,34.2H7.9C-15.9,273,17,329,65.3,327.8c37.4,0,68.2-55.5,68.2-65.3
|
||||||
|
c0-3.6-4.2-13.5-11.5-24.5h131.6v-78.2h26.3v32.4h17.9v-32.4h28.7v19h17.9v-19h34v139H120v72.8c0,44.3,36,80.4,80.4,80.4h34.1v-78.8
|
||||||
|
h163V452h34.1c44.3,0,80.4-36.1,80.4-80.4V140.3C512,137.2,511.8,134.2,511.8,131.1z M38.2,231.6L38.2,231.6
|
||||||
|
c13.6-11.6,33.1-15,47.2,0h0.1c10.7,9.7,19.9,23.6,23.2,30.8C66.8,349.9-6.5,275.4,38.2,231.6z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 7.2 KiB |
|
After Width: | Height: | Size: 11 KiB |
@@ -0,0 +1,21 @@
|
|||||||
|
|
||||||
|
<svg version="1.1" id="svg8" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="52.48 49.4 346.55 64.02">
|
||||||
|
<defs id="defs2"/>
|
||||||
|
<metadata id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g id="g2" transform="translate(52.499596,49.422425)">
|
||||||
|
<g id="g2106" transform="matrix(0.96564264,0,0,0.96251987,-899.3295,194.86874)">
|
||||||
|
<circle style="fill:#009688;fill-opacity:0.980392;stroke:none;stroke-width:0.141404;stop-color:#000000" id="path875-5-9-7-3-2-3-9-9-8-0-0-5-87-7" cx="964.56165" cy="-169.22266" r="33.234192"/>
|
||||||
|
<path id="rect1249-6-3-4-4-3-6-6-1-2" style="fill:#ffffff;fill-opacity:0.980392;stroke:none;stroke-width:0.146895;stop-color:#000000" d="m 962.2685,-187.40837 -6.64403,14.80375 -3.03599,6.76393 -6.64456,14.80375 30.59142,-21.56768 h -14.35312 l 20.99715,-14.80375 z"/>
|
||||||
|
</g>
|
||||||
|
<path style="font-size:79.7151px;line-height:1.25;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;letter-spacing:0px;word-spacing:0px;fill:#009688;stroke-width:1.99288" d="M 89.523017,59.410606 V 4.1680399 H 122.84393 V 10.784393 H 97.255382 V 27.44485 h 22.718808 v 6.536638 H 97.255382 v 25.429118 z m 52.292963,-5.340912 q 2.6306,0 4.62348,-0.07972 2.07259,-0.15943 3.42774,-0.47829 V 41.155848 q -0.79715,-0.398576 -2.63059,-0.637721 -1.75374,-0.31886 -4.30462,-0.31886 -1.67402,0 -3.58718,0.239145 -1.83345,0.239145 -3.42775,1.036296 -1.51459,0.717436 -2.55088,2.072593 -1.0363,1.275442 -1.0363,3.427749 0,3.985755 2.55089,5.580058 2.55088,1.514586 6.93521,1.514586 z m -0.63772,-37.147238 q 4.46404,0 7.49322,1.195727 3.10889,1.116011 4.94233,3.268319 1.91317,2.072593 2.71032,5.022052 0.79715,2.869743 0.79715,6.377208 V 58.69317 q -0.95658,0.159431 -2.71031,0.478291 -1.67402,0.239145 -3.82633,0.478291 -2.15231,0.239145 -4.70319,0.398575 -2.47117,0.239146 -4.94234,0.239146 -3.50746,0 -6.45692,-0.717436 -2.94946,-0.717436 -5.10177,-2.232023 -2.1523,-1.594302 -3.34803,-4.145186 -1.19573,-2.550883 -1.19573,-6.138063 0,-3.427749 1.35516,-5.898917 1.43487,-2.471168 3.82632,-3.985755 2.39146,-1.514587 5.58006,-2.232023 3.18861,-0.717436 6.69607,-0.717436 1.11601,0 2.31174,0.15943 1.19572,0.07972 2.23202,0.31886 1.11601,0.159431 1.91316,0.318861 0.79715,0.15943 1.11601,0.239145 v -2.072593 q 0,-1.833447 -0.39857,-3.587179 -0.39858,-1.833448 -1.43487,-3.188604 -1.0363,-1.434872 -2.86975,-2.232023 -1.75373,-0.876866 -4.62347,-0.876866 -3.6669,0 -6.45693,0.558005 -2.71031,0.478291 -4.06547,1.036297 l -0.87686,-6.138063 q 1.43487,-0.637721 4.7829,-1.195727 3.34804,-0.637721 7.25408,-0.637721 z m 37.86462,37.147238 q 4.54377,0 6.69607,-1.195726 2.23203,-1.195727 2.23203,-3.826325 0,-2.710314 -2.15231,-4.304616 -2.15231,-1.594302 -7.09465,-3.587179 -2.39145,-0.956581 -4.62347,-1.913163 -2.15231,-1.036296 -3.74661,-2.391453 -1.5943,-1.355157 -2.55088,-3.268319 -0.95659,-1.913163 -0.95659,-4.703191 0,-5.500342 4.06547,-8.688946 4.06547,-3.26832 11.0804,-3.26832 1.75374,0 3.50747,0.239146 1.75373,0.15943 3.26832,0.47829 1.51458,0.239146 2.6306,0.558006 1.19572,0.31886 1.83344,0.558006 l -1.35515,6.377208 q -1.19573,-0.637721 -3.74661,-1.275442 -2.55089,-0.717436 -6.13807,-0.717436 -3.10889,0 -5.42062,1.275442 -2.31174,1.195727 -2.31174,3.826325 0,1.355157 0.47829,2.391453 0.55801,1.036296 1.5943,1.913163 1.11601,0.797151 2.71031,1.514587 1.59431,0.717436 3.82633,1.514587 2.94946,1.116011 5.2612,2.232022 2.31173,1.036297 3.90604,2.471169 1.67401,1.434871 2.55088,3.507464 0.87687,1.992878 0.87687,4.942337 0,5.739487 -4.30462,8.688946 -4.2249,2.949459 -12.1167,2.949459 -5.50034,0 -8.60923,-0.956582 -3.10889,-0.876866 -4.2249,-1.355156 l 1.35516,-6.377209 q 1.27544,0.478291 4.06547,1.434872 2.79003,0.956581 7.4135,0.956581 z m 32.84256,-36.110941 h 15.70387 v 6.217778 h -15.70387 v 19.131625 q 0,3.108889 0.47829,5.181481 0.47829,1.992878 1.43487,3.188604 0.95658,1.116012 2.39145,1.594302 1.43487,0.478291 3.34804,0.478291 3.34803,0 5.34091,-0.717436 2.07259,-0.797151 2.86974,-1.116011 l 1.43487,6.138063 q -1.11601,0.558005 -3.90604,1.355156 -2.79003,0.876867 -6.37721,0.876867 -4.2249,0 -7.01492,-1.036297 -2.71032,-1.116011 -4.38434,-3.268319 -1.67401,-2.152308 -2.39145,-5.261197 -0.63772,-3.188604 -0.63772,-7.333789 V 6.4000628 l 7.41351,-1.2754417 z m 62.49652,41.451853 q -1.35516,-3.587179 -2.55088,-7.014929 -1.19573,-3.507464 -2.47117,-7.094644 h -25.03054 l -5.02205,14.109573 h -8.05123 q 3.18861,-8.768661 5.97863,-16.182166 2.79003,-7.493219 5.42063,-14.189288 2.71031,-6.696069 5.34091,-12.754416 2.6306,-6.138063 5.50034,-12.1166961 h 7.09465 q 2.86974,5.9786331 5.50034,12.1166961 2.6306,6.058347 5.2612,12.754416 2.71031,6.696069 5.50034,14.189288 2.79003,7.413505 5.97863,16.182166 z m -7.25407,-20.486781 q -2.55089,-6.935214 -5.10177,-13.392137 -2.47117,-6.536639 -5.18148,-12.515272 -2.79003,5.978633 -5.34091,12.515272 -2.47117,6.456923 -4.94234,13.392137 z M 304.99242,3.6100342 q 11.6384,0 17.85618,4.4640458 6.29749,4.384331 6.29749,13.152992 0,4.782906 -1.75373,8.210656 -1.67402,3.348034 -4.94234,5.500342 -3.1886,2.072592 -7.81208,3.029174 -4.62347,0.956581 -10.44268,0.956581 h -6.13806 v 20.486781 h -7.73236 V 4.9651909 q 3.26832,-0.797151 7.25407,-1.0362963 4.06547,-0.3188604 7.41351,-0.3188604 z m 0.63772,6.7757838 q -4.94234,0 -7.57294,0.239145 v 21.682508 h 5.8192 q 3.98576,0 7.17436,-0.47829 3.18861,-0.558006 5.34092,-1.753733 2.23202,-1.275441 3.42774,-3.427749 1.19573,-2.152308 1.19573,-5.500342 0,-3.188604 -1.27544,-5.261197 -1.19573,-2.072593 -3.34803,-3.268319 -2.0726,-1.275442 -4.86263,-1.753732 -2.79002,-0.478291 -5.89891,-0.478291 z M 338.7916,4.1680399 h 7.73237 V 59.410606 h -7.73237 z" id="text979-1" aria-label="FastAPI"/>
|
||||||
|
</g>
|
||||||
|
<rect y="7.1054274e-15" x="0" height="162.82199" width="451.52316" id="rect824" style="opacity:0.98000004;fill:none;fill-opacity:1;stroke-width:0.31103656"/>
|
||||||
|
<g id="layer1" transform="translate(83.131114,-6.0791148)"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.1 KiB |
|
After Width: | Height: | Size: 292 KiB |
@@ -0,0 +1 @@
|
|||||||
|
<svg viewBox="0 0 1180 320" xmlns="http://www.w3.org/2000/svg"><path d="m367.44 153.84c0 52.32 33.6 88.8 80.16 88.8s80.16-36.48 80.16-88.8-33.6-88.8-80.16-88.8-80.16 36.48-80.16 88.8zm129.6 0c0 37.44-20.4 61.68-49.44 61.68s-49.44-24.24-49.44-61.68 20.4-61.68 49.44-61.68 49.44 24.24 49.44 61.68z"/><path d="m614.27 242.64c35.28 0 55.44-29.76 55.44-65.52s-20.16-65.52-55.44-65.52c-16.32 0-28.32 6.48-36.24 15.84v-13.44h-28.8v169.2h28.8v-56.4c7.92 9.36 19.92 15.84 36.24 15.84zm-36.96-69.12c0-23.76 13.44-36.72 31.2-36.72 20.88 0 32.16 16.32 32.16 40.32s-11.28 40.32-32.16 40.32c-17.76 0-31.2-13.2-31.2-36.48z"/><path d="m747.65 242.64c25.2 0 45.12-13.2 54-35.28l-24.72-9.36c-3.84 12.96-15.12 20.16-29.28 20.16-18.48 0-31.44-13.2-33.6-34.8h88.32v-9.6c0-34.56-19.44-62.16-55.92-62.16s-60 28.56-60 65.52c0 38.88 25.2 65.52 61.2 65.52zm-1.44-106.8c18.24 0 26.88 12 27.12 25.92h-57.84c4.32-17.04 15.84-25.92 30.72-25.92z"/><path d="m823.98 240h28.8v-73.92c0-18 13.2-27.6 26.16-27.6 15.84 0 22.08 11.28 22.08 26.88v74.64h28.8v-83.04c0-27.12-15.84-45.36-42.24-45.36-16.32 0-27.6 7.44-34.8 15.84v-13.44h-28.8z"/><path d="m1014.17 67.68-65.28 172.32h30.48l14.64-39.36h74.4l14.88 39.36h30.96l-65.28-172.32zm16.8 34.08 27.36 72h-54.24z"/><path d="m1163.69 68.18h-30.72v172.32h30.72z"/><path d="m297.06 130.97c7.26-21.79 4.76-45.66-6.85-65.48-17.46-30.4-52.56-46.04-86.84-38.68-15.25-17.18-37.16-26.95-60.13-26.81-35.04-.08-66.13 22.48-76.91 55.82-22.51 4.61-41.94 18.7-53.31 38.67-17.59 30.32-13.58 68.54 9.92 94.54-7.26 21.79-4.76 45.66 6.85 65.48 17.46 30.4 52.56 46.04 86.84 38.68 15.24 17.18 37.16 26.95 60.13 26.8 35.06.09 66.16-22.49 76.94-55.86 22.51-4.61 41.94-18.7 53.31-38.67 17.57-30.32 13.55-68.51-9.94-94.51zm-120.28 168.11c-14.03.02-27.62-4.89-38.39-13.88.49-.26 1.34-.73 1.89-1.07l63.72-36.8c3.26-1.85 5.26-5.32 5.24-9.07v-89.83l26.93 15.55c.29.14.48.42.52.74v74.39c-.04 33.08-26.83 59.9-59.91 59.97zm-128.84-55.03c-7.03-12.14-9.56-26.37-7.15-40.18.47.28 1.3.79 1.89 1.13l63.72 36.8c3.23 1.89 7.23 1.89 10.47 0l77.79-44.92v31.1c.02.32-.13.63-.38.83l-64.41 37.19c-28.69 16.52-65.33 6.7-81.92-21.95zm-16.77-139.09c7-12.16 18.05-21.46 31.21-26.29 0 .55-.03 1.52-.03 2.2v73.61c-.02 3.74 1.98 7.21 5.23 9.06l77.79 44.91-26.93 15.55c-.27.18-.61.21-.91.08l-64.42-37.22c-28.63-16.58-38.45-53.21-21.95-81.89zm221.26 51.49-77.79-44.92 26.93-15.54c.27-.18.61-.21.91-.08l64.42 37.19c28.68 16.57 38.51 53.26 21.94 81.94-7.01 12.14-18.05 21.44-31.2 26.28v-75.81c.03-3.74-1.96-7.2-5.2-9.06zm26.8-40.34c-.47-.29-1.3-.79-1.89-1.13l-63.72-36.8c-3.23-1.89-7.23-1.89-10.47 0l-77.79 44.92v-31.1c-.02-.32.13-.63.38-.83l64.41-37.16c28.69-16.55 65.37-6.7 81.91 22 6.99 12.12 9.52 26.31 7.15 40.1zm-168.51 55.43-26.94-15.55c-.29-.14-.48-.42-.52-.74v-74.39c.02-33.12 26.89-59.96 60.01-59.94 14.01 0 27.57 4.92 38.34 13.88-.49.26-1.33.73-1.89 1.07l-63.72 36.8c-3.26 1.85-5.26 5.31-5.24 9.06l-.04 89.79zm14.63-31.54 34.65-20.01 34.65 20v40.01l-34.65 20-34.65-20z"/></svg>
|
||||||
|
After Width: | Height: | Size: 2.9 KiB |
@@ -0,0 +1,10 @@
|
|||||||
|
<svg width="85" height="27" viewBox="0 0 85 27" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_1878_297)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M75.2909 13.8125C75.2909 10.8448 77.4892 9.12284 80.2371 9.12284C82.2888 9.12284 84.1207 10.1121 85 12.5668C84.7435 13.8125 83.2047 15.2047 82.5453 15.4246C81.9957 14.2522 81.3728 13.556 80.7866 13.556C80.0539 13.556 80.0172 14.069 80.0172 14.7284C80.0172 15.1955 80.151 15.8834 80.3119 16.7112C80.5549 17.9615 80.8599 19.5309 80.8599 21.1401C80.8599 24.0711 78.8082 26.2328 75.6573 26.2328C72.7721 26.2328 71.1778 24.3414 70.4665 21.3198C68.5818 24.6972 65.8257 26.2328 63.7134 26.2328C60.411 26.2328 59.6338 23.7919 59.7121 21.3161C58.3852 23.6612 55.831 26.2328 53.3815 26.2328C50.8809 26.2328 49.9976 24.0563 50.2002 21.5215C48.702 24.3122 45.9919 26.2328 43.3793 26.2328C40.5442 26.2328 39.141 23.9806 39.5951 21.189C37.6878 23.5333 34.1374 26.2328 30.4461 26.2328C26.2373 26.2328 24.4053 23.9632 24.1882 21.1193C22.1568 24.375 19.4187 26.3427 16.1573 26.3427C11.4493 26.3427 9.76537 22.1561 9.52032 18.7315C7.77547 21.0681 5.81377 23.4923 3.40733 26.1961C3.15086 26.4526 2.93103 26.5991 2.67457 26.5991C1.8319 26.5991 0.109914 22.8621 0 21.4698C0.723099 20.3478 5.28119 15.3398 8.95093 11.3079C10.2409 9.89066 11.4211 8.594 12.2863 7.6291C10.0389 8.30726 7.72169 9.65975 4.79957 11.7608C4.28664 12.1272 2.85776 8.7931 2.8944 6.22845C6.26509 3.73707 11.3944 2.16164 15.5345 2.16164C21.3233 2.16164 24.6573 5.38578 24.6573 9.8556C24.6573 13.5927 21.5431 17.6961 17 17.8427C14.6377 17.904 13.1237 16.578 12.3494 14.9405C12.4419 17.473 13.7587 20.5905 17.2931 20.5905C21.1462 20.5905 22.9965 18.2646 25.7559 14.7958C25.9352 14.5704 26.1183 14.3403 26.306 14.1056C28.6509 11.2112 31.3621 8.64655 35.319 8.64655C37.7371 8.64655 39.3858 10.1487 39.3858 12.4203C39.3858 15.1681 36.1616 18.9784 31.6552 18.9784C30.8855 18.9784 30.1839 18.877 29.5917 18.6766C29.5768 18.7921 29.5668 18.9058 29.5668 19.0151C29.5668 20.2974 30.0431 21.0668 32.1315 21.0668C35.2091 21.0668 38.1034 19.2349 41.6207 14.9483C45.0647 10.7349 47.6659 8.90302 50.4138 8.90302C52.2687 8.90302 53.6765 9.90832 54.2969 11.6014C57.9796 6.28253 61.1038 2.51388 63.75 0C66.3513 1.09914 68.2198 3.26078 67.7069 3.70043C65.7651 5.45905 59.2802 12.5302 56.7155 16.7435C56.056 17.8427 55.4332 19.0517 55.4332 19.6379C55.4332 20.1875 55.7629 20.3707 56.1293 20.3707C57.8898 20.3707 61.4176 16.2147 64.4645 12.6253C65.6026 11.2845 66.6736 10.0228 67.5603 9.08621C69.6121 9.92888 71.7004 11.7241 71.1875 12.347C68.4763 15.5711 66.4246 18.2091 66.4246 19.7112C66.4246 20.1142 66.5711 20.3707 67.1207 20.3707C68.1466 20.3707 69.0991 19.4547 70.6746 17.5129C71.0043 17.1099 71.4073 17.1099 71.6638 17.7328C72.3599 19.4181 73.3858 20.3341 74.1918 20.3341C75.1444 20.3341 75.6207 19.4914 75.6207 18.2091C75.6207 17.3327 75.5137 16.3138 75.4217 15.4365C75.3521 14.7733 75.2909 14.191 75.2909 13.8125ZM16.194 13.3362C18.1358 13.3362 20.2608 12.2737 20.2608 10.1121C20.2608 8.80024 19.4466 7.59084 17.2708 7.22257C17.156 7.40192 17.042 7.58017 16.9287 7.75739C15.8231 9.4858 14.7804 11.116 13.7281 12.7095C14.3586 13.0636 15.156 13.3362 16.194 13.3362ZM35.8319 13.9957C35.8319 13.4095 35.4655 13.0065 34.8793 13.0065C33.4094 13.0065 31.1923 15.0693 30.149 17.0613C30.5341 17.2101 30.9862 17.2931 31.472 17.2931C34.0733 17.2931 35.8319 15.3147 35.8319 13.9957ZM45.4677 19.3082C45.4677 19.9677 45.834 20.4073 46.6034 20.4073C48.9849 20.4073 51.9526 16.0841 51.9526 14.3254C51.9526 13.5927 51.5496 13.153 50.8901 13.153C48.7285 13.153 45.4677 17.2565 45.4677 19.3082ZM76.0599 6.08207C75.2172 7.47431 73.9349 9.04974 73.4586 9.52603C71.2603 8.61008 69.2086 6.77819 69.5017 6.26525C70.3077 4.83638 71.6267 3.29758 72.103 2.82129C74.3012 3.73724 76.353 5.60577 76.0599 6.08207Z" fill="#FF4438"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_1878_297">
|
||||||
|
<rect width="85" height="26.5991" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 9.7 KiB |
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 262 33"><g fill-rule="evenodd" clip-path="url(#prefix__clip0)" clip-rule="evenodd"><path fill="#38bdf8" d="M27 0c-7.2 0-11.7 3.6-13.5 10.8 2.7-3.6 5.85-4.95 9.45-4.05 2.054.513 3.522 2.004 5.147 3.653C30.744 13.09 33.808 16.2 40.5 16.2c7.2 0 11.7-3.6 13.5-10.8-2.7 3.6-5.85 4.95-9.45 4.05-2.054-.513-3.522-2.004-5.147-3.653C36.756 3.11 33.692 0 27 0zM13.5 16.2C6.3 16.2 1.8 19.8 0 27c2.7-3.6 5.85-4.95 9.45-4.05 2.054.514 3.522 2.004 5.147 3.653C17.244 29.29 20.308 32.4 27 32.4c7.2 0 11.7-3.6 13.5-10.8-2.7 3.6-5.85 4.95-9.45 4.05-2.054-.513-3.522-2.004-5.147-3.653C23.256 19.31 20.192 16.2 13.5 16.2z"/><path fill="#0f172a" d="M80.996 13.652h-4.712v9.12c0 2.432 1.596 2.394 4.712 2.242V28.7c-6.308.76-8.816-.988-8.816-5.928v-9.12h-3.496V9.7h3.496V4.596l4.104-1.216V9.7h4.712v3.952zM98.958 9.7h4.104v19h-4.104v-2.736c-1.444 2.014-3.686 3.23-6.65 3.23-5.168 0-9.462-4.37-9.462-9.994 0-5.662 4.294-9.994 9.462-9.994 2.964 0 5.206 1.216 6.65 3.192V9.7zm-6.004 15.58c3.42 0 6.004-2.546 6.004-6.08 0-3.534-2.584-6.08-6.004-6.08-3.42 0-6.004 2.546-6.004 6.08 0 3.534 2.584 6.08 6.004 6.08zm16.948-18.43c-1.444 0-2.622-1.216-2.622-2.622a2.627 2.627 0 012.622-2.622 2.627 2.627 0 012.622 2.622c0 1.406-1.178 2.622-2.622 2.622zM107.85 28.7v-19h4.104v19h-4.104zm8.854 0V.96h4.104V28.7h-4.104zm30.742-19h4.332l-5.966 19h-4.028l-3.952-12.806-3.99 12.806h-4.028l-5.966-19h4.332l3.686 13.11 3.99-13.11h3.914l3.952 13.11 3.724-13.11zm9.424-2.85c-1.444 0-2.622-1.216-2.622-2.622a2.627 2.627 0 012.622-2.622 2.627 2.627 0 012.622 2.622c0 1.406-1.178 2.622-2.622 2.622zm-2.052 21.85v-19h4.104v19h-4.104zm18.848-19.494c4.256 0 7.296 2.888 7.296 7.828V28.7h-4.104V17.452c0-2.888-1.672-4.408-4.256-4.408-2.698 0-4.826 1.596-4.826 5.472V28.7h-4.104v-19h4.104v2.432c1.254-1.976 3.306-2.926 5.89-2.926zM200.418 2.1h4.104v26.6h-4.104v-2.736c-1.444 2.014-3.686 3.23-6.65 3.23-5.168 0-9.462-4.37-9.462-9.994 0-5.662 4.294-9.994 9.462-9.994 2.964 0 5.206 1.216 6.65 3.192V2.1zm-6.004 23.18c3.42 0 6.004-2.546 6.004-6.08 0-3.534-2.584-6.08-6.004-6.08-3.42 0-6.004 2.546-6.004 6.08 0 3.534 2.584 6.08 6.004 6.08zm23.864 3.914c-5.738 0-10.032-4.37-10.032-9.994 0-5.662 4.294-9.994 10.032-9.994 3.724 0 6.954 1.938 8.474 4.902l-3.534 2.052c-.836-1.786-2.698-2.926-4.978-2.926-3.344 0-5.89 2.546-5.89 5.966 0 3.42 2.546 5.966 5.89 5.966 2.28 0 4.142-1.178 5.054-2.926l3.534 2.014c-1.596 3.002-4.826 4.94-8.55 4.94zm15.314-14.25c0 3.458 10.222 1.368 10.222 8.398 0 3.8-3.306 5.852-7.41 5.852-3.8 0-6.536-1.71-7.752-4.446l3.534-2.052c.608 1.71 2.128 2.736 4.218 2.736 1.824 0 3.23-.608 3.23-2.128 0-3.382-10.222-1.482-10.222-8.284 0-3.572 3.078-5.814 6.954-5.814 3.116 0 5.7 1.444 7.03 3.952l-3.458 1.938c-.684-1.482-2.014-2.166-3.572-2.166-1.482 0-2.774.646-2.774 2.014zm17.518 0c0 3.458 10.222 1.368 10.222 8.398 0 3.8-3.306 5.852-7.41 5.852-3.8 0-6.536-1.71-7.752-4.446l3.534-2.052c.608 1.71 2.128 2.736 4.218 2.736 1.824 0 3.23-.608 3.23-2.128 0-3.382-10.222-1.482-10.222-8.284 0-3.572 3.078-5.814 6.954-5.814 3.116 0 5.7 1.444 7.03 3.952l-3.458 1.938c-.684-1.482-2.014-2.166-3.572-2.166-1.482 0-2.774.646-2.774 2.014z"/></g><defs><clipPath id="prefix__clip0"><path fill="#fff" d="M0 0h262v32.4H0z"/></clipPath></defs></svg>
|
||||||
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 1.5 MiB |
|
After Width: | Height: | Size: 1.9 MiB |
|
After Width: | Height: | Size: 1.7 MiB |
|
After Width: | Height: | Size: 2.2 MiB |
|
After Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 1.2 MiB |
|
After Width: | Height: | Size: 1.1 MiB |
|
After Width: | Height: | Size: 1.2 MiB |
|
After Width: | Height: | Size: 2.3 MiB |
|
After Width: | Height: | Size: 1.4 MiB |
|
After Width: | Height: | Size: 1.8 MiB |
|
After Width: | Height: | Size: 1.2 MiB |
|
After Width: | Height: | Size: 1.2 MiB |
|
After Width: | Height: | Size: 1.3 MiB |
|
After Width: | Height: | Size: 1.5 MiB |
|
After Width: | Height: | Size: 1.5 MiB |
|
After Width: | Height: | Size: 1.2 MiB |
|
After Width: | Height: | Size: 1.5 MiB |
|
After Width: | Height: | Size: 1.5 MiB |
|
After Width: | Height: | Size: 1.7 MiB |
|
After Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 1.1 MiB |
|
After Width: | Height: | Size: 1.8 MiB |