Spaces:
Running
Running
File size: 4,984 Bytes
282fee0 |
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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
<!DOCTYPE html>
<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> |