docextractor-pro / about.html
ASDAD34's picture
Çalıştır
983e5f7 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About DocExtractor Pro</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
</head>
<body class="bg-gray-50 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<section class="max-w-4xl mx-auto bg-white rounded-xl shadow-md overflow-hidden p-6">
<h1 class="text-3xl font-bold text-gray-800 mb-6">About DocExtractor Pro</h1>
<div class="prose max-w-none">
<p class="text-gray-600 mb-4">DocExtractor Pro is a powerful web-based tool that helps you extract and convert text content from various document formats with ease.</p>
<h2 class="text-2xl font-semibold text-gray-800 mt-6 mb-4">Our Mission</h2>
<p class="text-gray-600 mb-4">We aim to simplify document processing by providing an intuitive interface that handles complex document conversions with just a few clicks.</p>
<h2 class="text-2xl font-semibold text-gray-800 mt-6 mb-4">Why Choose Us?</h2>
<ul class="text-gray-600 space-y-2 mb-6">
<li><i data-feather="check" class="inline mr-2 text-green-500"></i> Supports multiple document formats including PDF, Word, Excel, and Images</li>
<li><i data-feather="check" class="inline mr-2 text-green-500"></i> Preserves formatting and structure in conversions</li>
<li><i data-feather="check" class="inline mr-2 text-green-500"></i> Advanced OCR technology for image-based documents</li>
<li><i data-feather="check" class="inline mr-2 text-green-500"></i> Secure processing - files never leave your browser</li>
</ul>
<div class="bg-blue-50 p-6 rounded-lg mt-8">
<h3 class="text-xl font-medium text-blue-800 mb-4">Need Help?</h3>
<p class="text-blue-700 mb-4">Check out our documentation or contact our support team.</p>
<a href="#" class="bg-blue-600 text-white px-4 py-2 rounded inline-flex items-center">
<i data-feather="mail" class="mr-2"></i> Contact Support
</a>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script>
feather.replace();
</script>
</body>
</html>