newsscraper-pro / about.html
bep40's picture
Lấy tin tức tự động từ URL nhập vào url tin tức, ứng dụng sẽ đưa ra các ý chính và toàn bộ hình ảnh tin đó
9a0b1a5 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - NewsScraper 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>
</head>
<body class="bg-gray-50 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-16">
<!-- Header Section -->
<section class="text-center mb-16">
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-6">
About NewsScraper Pro
</h1>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">
Powerful web scraping technology that extracts key insights and images from any news article.
</p>
</section>
<!-- Features Section -->
<section class="max-w-6xl mx-auto mb-16">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-white rounded-2xl shadow-lg p-8 text-center">
<div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-6">
<i data-feather="zap" class="w-8 h-8 text-blue-500"></i>
</div>
<h3 class="text-2xl font-bold text-gray-800 mb-4">Fast Extraction</h3>
<p class="text-gray-600">
Quickly extract content from news articles with our optimized scraping algorithms.
</p>
</div>
<!-- Feature 2 -->
<div class="bg-white rounded-2xl shadow-lg p-8 text-center">
<div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mx-auto mb-6">
<i data-feather="check-circle" class="w-8 h-8 text-green-500"></i>
</div>
<h3 class="text-2xl font-bold text-gray-800 mb-4">Accurate Analysis</h3>
<p class="text-gray-600">
Get precise key points and complete image galleries from any news source.
</p>
</div>
<!-- Feature 3 -->
<div class="bg-white rounded-2xl shadow-lg p-8 text-center">
<div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-6">
<i data-feather="shield" class="w-8 h-8 text-purple-500"></i>
</div>
<h3 class="text-2xl font-bold text-gray-800 mb-4">Secure Processing</h3>
<p class="text-gray-600">
Your data is processed securely and never stored on our servers.
</p>
</div>
</section>
<!-- How It Works -->
<section class="max-w-4xl mx-auto bg-white rounded-2xl shadow-lg p-8">
<h2 class="text-3xl font-bold text-gray-800 mb-8 text-center">How It Works</h2>
<div class="space-y-8">
<div class="flex items-start gap-6">
<div class="w-12 h-12 bg-blue-500 rounded-full flex items-center justify-center text-white font-bold mt-1">
1
</div>
<div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Enter URL</h3>
<p class="text-gray-600">
Simply paste the URL of any news article you want to analyze.
</p>
</div>
</div>
<div class="flex items-start gap-6">
<div class="w-12 h-12 bg-blue-500 rounded-full flex items-center justify-center text-white font-bold mt-1">
2
</div>
<div>
<h3 class="text-xl font-bold text-gray-800 mb-2">AI Processing</h3>
<p class="text-gray-600">
Our system analyzes the article content and extracts key insights.
</p>
</div>
</div>
<div class="flex items-start gap-6">
<div class="w-12 h-12 bg-blue-500 rounded-full flex items-center justify-center text-white font-bold mt-1">
3
</div>
<div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Get Results</h3>
<p class="text-gray-600">
Receive organized key points and all images from the article.
</p>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<!-- Component Scripts -->
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html>