File size: 5,058 Bytes
9a0b1a5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
110
111
112
113
<!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>