Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>About - Web Scraper 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> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#3B82F6', | |
| secondary: '#10B981' | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| </head> | |
| <body class="bg-gray-50 min-h-screen flex flex-col"> | |
| <custom-navbar></custom-navbar> | |
| <main class="flex-1 container mx-auto px-4 py-12"> | |
| <div class="max-w-4xl mx-auto"> | |
| <!-- Header --> | |
| <div class="text-center mb-12"> | |
| <h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-4"> | |
| About Web Scraper Pro | |
| <span class="text-primary">🕷️</span> | |
| </h1> | |
| <p class="text-xl text-gray-600"> | |
| Powerful web content extraction made simple | |
| </p> | |
| </div> | |
| <!-- Features Grid --> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8 mb-12"> | |
| <div class="bg-white p-6 rounded-2xl shadow-lg text-center"> | |
| <i data-feather="zap" class="w-12 h-12 text-primary mx-auto mb-4"></i> | |
| <h3 class="text-lg font-semibold text-gray-900 mb-2">Fast Extraction</h3> | |
| <p class="text-gray-600">Quickly extract content and images from any web page</p> | |
| </div> | |
| <div class="bg-white p-6 rounded-2xl shadow-lg text-center"> | |
| <i data-feather="shield" class="w-12 h-12 text-primary mx-auto mb-4"></i> | |
| <h3 class="text-lg font-semibold text-gray-900 mb-2">Secure</h3> | |
| <p class="text-gray-600">Your data and privacy are our top priority</p> | |
| </div> | |
| <div class="bg-white p-6 rounded-2xl shadow-lg text-center"> | |
| <i data-feather="code" class="w-12 h-12 text-primary mx-auto mb-4"></i> | |
| <h3 class="text-lg font-semibold text-gray-900 mb-2">Developer Friendly</h3> | |
| <p class="text-gray-600">Easy-to-use API for integration into your applications</p> | |
| </div> | |
| </div> | |
| <!-- How It Works --> | |
| <div class="bg-white rounded-2xl shadow-xl p-8"> | |
| <h2 class="text-3xl font-bold text-gray-900 mb-6">How It Works</h2> | |
| <div class="space-y-6"> | |
| <div class="flex items-start gap-4"> | |
| <div class="bg-primary text-white rounded-full w-8 h-8 flex items-center justify-center flex-shrink-0"> | |
| <span class="font-semibold">1</span> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-semibold text-gray-900 mb-2">Enter URL</h3> | |
| <p class="text-gray-600">Provide the web page URL you want to extract content from</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start gap-4"> | |
| <div class="bg-primary text-white rounded-full w-8 h-8 flex items-center justify-center flex-shrink-0"> | |
| <span class="font-semibold">2</span> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-semibold text-gray-900 mb-2">Content Extraction</h3> | |
| <p class="text-gray-600">Our system analyzes the page and extracts relevant content and images</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start gap-4"> | |
| <div class="bg-primary text-white rounded-full w-8 h-8 flex items-center justify-center flex-shrink-0"> | |
| <span class="font-semibold">3</span> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-semibold text-gray-900 mb-2">View Results</h3> | |
| <p class="text-gray-600">Browse through the extracted text content and image gallery</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </main> | |
| <custom-footer></custom-footer> | |
| <!-- Component Scripts --> | |
| <script src="components/navbar.js"></script> | |
| <script src="components/footer.js"></script> | |
| <!-- Main Script --> | |
| <script src="script.js"></script> | |
| <!-- Feather Icons --> | |
| <script> | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> |