File size: 4,546 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
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Features - 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">DocExtractor Pro Features</h1>
            
            <div class="grid md:grid-cols-2 gap-8">
                <div class="bg-indigo-50 p-6 rounded-lg">
                    <div class="flex items-center mb-4">
                        <div class="bg-indigo-100 p-3 rounded-full mr-4">
                            <i data-feather="file" class="text-indigo-600"></i>
                        </div>
                        <h3 class="text-xl font-semibold text-gray-800">PDF Extraction</h3>
                    </div>
                    <p class="text-gray-600">Extract text with formatting from PDF documents while preserving the original structure.</p>
                </div>
                
                <div class="bg-purple-50 p-6 rounded-lg">
                    <div class="flex items-center mb-4">
                        <div class="bg-purple-100 p-3 rounded-full mr-4">
                            <i data-feather="file-text" class="text-purple-600"></i>
                        </div>
                        <h3 class="text-xl font-semibold text-gray-800">Word Processing</h3>
                    </div>
                    <p class="text-gray-600">Convert DOCX and DOC files to clean text while maintaining headings and lists.</p>
                </div>
                
                <div class="bg-green-50 p-6 rounded-lg">
                    <div class="flex items-center mb-4">
                        <div class="bg-green-100 p-3 rounded-full mr-4">
                            <i data-feather="grid" class="text-green-600"></i>
                        </div>
                        <h3 class="text-xl font-semibold text-gray-800">Excel Conversion</h3>
                    </div>
                    <p class="text-gray-600">Extract data from Excel spreadsheets and convert to structured JSON or plain text.</p>
                </div>
                
                <div class="bg-red-50 p-6 rounded-lg">
                    <div class="flex items-center mb-4">
                        <div class="bg-red-100 p-3 rounded-full mr-4">
                            <i data-feather="image" class="text-red-600"></i>
                        </div>
                        <h3 class="text-xl font-semibold text-gray-800">OCR Technology</h3>
                    </div>
                    <p class="text-gray-600">Optical Character Recognition extracts text from JPG, PNG and other image formats.</p>
                </div>
                
                <div class="bg-yellow-50 p-6 rounded-lg">
                    <div class="flex items-center mb-4">
                        <div class="bg-yellow-100 p-3 rounded-full mr-4">
                            <i data-feather="download" class="text-yellow-600"></i>
                        </div>
                        <h3 class="text-xl font-semibold text-gray-800">Multiple Formats</h3>
                    </div>
                    <p class="text-gray-600">Export results as JSON, Markdown or Plain Text with one click downloads.</p>
                </div>
                
                <div class="bg-blue-50 p-6 rounded-lg">
                    <div class="flex items-center mb-4">
                        <div class="bg-blue-100 p-3 rounded-full mr-4">
                            <i data-feather="shield" class="text-blue-600"></i>
                        </div>
                        <h3 class="text-xl font-semibold text-gray-800">Privacy Focused</h3>
                    </div>
                    <p class="text-gray-600">All processing happens in your browser - your documents never touch our servers.</p>
                </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>