File size: 2,796 Bytes
983e5f7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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>