File size: 3,629 Bytes
e71074e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Features - Modern UI Showcase</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <custom-navbar></custom-navbar>
    
    <main class="pt-20 pb-16 px-4 max-w-6xl mx-auto">
        <section class="text-center mb-16">
            <h1 class="text-4xl font-bold text-gray-900 mb-4">Our Powerful Features</h1>
            <p class="text-xl text-gray-600 max-w-2xl mx-auto">Discover what makes our product stand out from the competition</p>
        </section>

        <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
            <div class="bg-white rounded-xl shadow-md overflow-hidden p-6 hover:shadow-lg transition-shadow">
                <div class="text-indigo-500 text-3xl mb-4">
                    <i class="fas fa-bolt"></i>
                </div>
                <h3 class="text-xl font-semibold mb-2">Lightning Fast</h3>
                <p class="text-gray-600">Optimized for speed with our cutting-edge technology stack.</p>
            </div>

            <div class="bg-white rounded-xl shadow-md overflow-hidden p-6 hover:shadow-lg transition-shadow">
                <div class="text-indigo-500 text-3xl mb-4">
                    <i class="fas fa-shield-alt"></i>
                </div>
                <h3 class="text-xl font-semibold mb-2">Enterprise Security</h3>
                <p class="text-gray-600">Military-grade encryption to keep your data safe and secure.</p>
            </div>

            <div class="bg-white rounded-xl shadow-md overflow-hidden p-6 hover:shadow-lg transition-shadow">
                <div class="text-indigo-500 text-3xl mb-4">
                    <i class="fas fa-sync-alt"></i>
                </div>
                <h3 class="text-xl font-semibold mb-2">Real-time Sync</h3>
                <p class="text-gray-600">Changes update instantly across all your devices.</p>
            </div>

            <div class="bg-white rounded-xl shadow-md overflow-hidden p-6 hover:shadow-lg transition-shadow">
                <div class="text-indigo-500 text-3xl mb-4">
                    <i class="fas fa-chart-line"></i>
                </div>
                <h3 class="text-xl font-semibold mb-2">Advanced Analytics</h3>
                <p class="text-gray-600">Get actionable insights with our powerful reporting tools.</p>
            </div>

            <div class="bg-white rounded-xl shadow-md overflow-hidden p-6 hover:shadow-lg transition-shadow">
                <div class="text-indigo-500 text-3xl mb-4">
                    <i class="fas fa-cogs"></i>
                </div>
                <h3 class="text-xl font-semibold mb-2">Customizable</h3>
                <p class="text-gray-600">Tailor the platform to your exact business needs.</p>
            </div>

            <div class="bg-white rounded-xl shadow-md overflow-hidden p-6 hover:shadow-lg transition-shadow">
                <div class="text-indigo-500 text-3xl mb-4">
                    <i class="fas fa-headset"></i>
                </div>
                <h3 class="text-xl font-semibold mb-2">24/7 Support</h3>
                <p class="text-gray-600">Our expert team is always ready to help you succeed.</p>
            </div>
        </div>
    </main>

    <script src="components/navbar.js"></script>
    <script src="script.js"></script>
</body>
</html>