File size: 12,840 Bytes
c738c07
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
06b029f
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Message Viewer - Connect & Monitor</title>
    <link rel="icon" type="image/x-icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>💬</text></svg>">
    <script src="https://cdn.tailwindcss.com"></script>
    <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
    <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <style>
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        .glass-effect {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .gradient-text {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
    </style>
</head>
<body class="bg-gray-900 text-white overflow-x-hidden">
    <!-- Navigation -->
    <nav class="fixed w-full z-50 glass-effect" data-aos="fade-down">
        <div class="container mx-auto px-6 py-4">
            <div class="flex items-center justify-between">
                <div class="flex items-center space-x-2">
                    <i data-feather="message-square" class="w-8 h-8 text-purple-400"></i>
                    <span class="text-2xl font-bold gradient-text">MessageHub</span>
                </div>
                <div class="hidden md:flex items-center space-x-8">
                    <a href="#features" class="hover:text-purple-400 transition-colors">Features</a>
                    <a href="#how-it-works" class="hover:text-purple-400 transition-colors">How It Works</a>
                    <a href="dashboard.html" class="bg-purple-600 hover:bg-purple-700 px-6 py-2 rounded-full transition-all transform hover:scale-105">Get Started</a>
                </div>
                <button class="md:hidden" id="mobile-menu-btn">
                    <i data-feather="menu" class="w-6 h-6"></i>
                </button>
            </div>
        </div>
    </nav>

    <!-- Mobile Menu -->
    <div id="mobile-menu" class="fixed inset-0 z-40 bg-gray-900 bg-opacity-95 hidden">
        <div class="flex flex-col items-center justify-center h-full space-y-8">
            <a href="#features" class="text-2xl hover:text-purple-400 transition-colors mobile-menu-link">Features</a>
            <a href="#how-it-works" class="text-2xl hover:text-purple-400 transition-colors mobile-menu-link">How It Works</a>
            <a href="dashboard.html" class="bg-purple-600 hover:bg-purple-700 px-8 py-3 rounded-full text-xl transition-all">Get Started</a>
        </div>
    </div>

    <!-- Hero Section -->
    <section class="min-h-screen flex items-center justify-center relative overflow-hidden">
        <div class="absolute inset-0 z-0">
            <div id="vanta-bg" class="w-full h-full"></div>
        </div>
        <div class="container mx-auto px-6 text-center relative z-10">
            <h1 class="text-5xl md:text-7xl font-bold mb-6" data-aos="fade-up">
                View Messages from<br>
                <span class="gradient-text">Any Device</span>
            </h1>
            <p class="text-xl md:text-2xl text-gray-300 mb-8 max-w-3xl mx-auto" data-aos="fade-up" data-aos-delay="200">
                Seamlessly monitor and manage messages across multiple devices with our secure, real-time platform
            </p>
            <div class="flex flex-col sm:flex-row gap-4 justify-center" data-aos="fade-up" data-aos-delay="400">
                <a href="dashboard.html" class="bg-purple-600 hover:bg-purple-700 px-8 py-4 rounded-full text-lg font-semibold transition-all transform hover:scale-105 flex items-center justify-center space-x-2">
                    <span>Start Monitoring</span>
                    <i data-feather="arrow-right" class="w-5 h-5"></i>
                </a>
                <button class="border-2 border-purple-400 hover:bg-purple-400 hover:bg-opacity-20 px-8 py-4 rounded-full text-lg font-semibold transition-all flex items-center justify-center space-x-2">
                    <i data-feather="play" class="w-5 h-5"></i>
                    <span>Watch Demo</span>
                </button>
            </div>
        </div>
        <div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 float-animation">
            <i data-feather="chevron-down" class="w-8 h-8 text-purple-400"></i>
        </div>
    </section>

    <!-- Features Section -->
    <section id="features" class="py-20 bg-gray-800">
        <div class="container mx-auto px-6">
            <h2 class="text-4xl md:text-5xl font-bold text-center mb-16" data-aos="fade-up">
                Powerful <span class="gradient-text">Features</span>
            </h2>
            <div class="grid md:grid-cols-3 gap-8">
                <div class="bg-gray-700 p-8 rounded-2xl hover:bg-gray-600 transition-all transform hover:scale-105" data-aos="fade-up" data-aos-delay="100">
                    <div class="bg-purple-600 w-16 h-16 rounded-full flex items-center justify-center mb-6">
                        <i data-feather="smartphone" class="w-8 h-8"></i>
                    </div>
                    <h3 class="text-2xl font-bold mb-4">Multi-Device Support</h3>
                    <p class="text-gray-300">Connect and monitor messages from Android, iOS, and other platforms simultaneously</p>
                </div>
                <div class="bg-gray-700 p-8 rounded-2xl hover:bg-gray-600 transition-all transform hover:scale-105" data-aos="fade-up" data-aos-delay="200">
                    <div class="bg-purple-600 w-16 h-16 rounded-full flex items-center justify-center mb-6">
                        <i data-feather="shield" class="w-8 h-8"></i>
                    </div>
                    <h3 class="text-2xl font-bold mb-4">End-to-End Encryption</h3>
                    <p class="text-gray-300">Your data is protected with military-grade encryption and secure protocols</p>
                </div>
                <div class="bg-gray-700 p-8 rounded-2xl hover:bg-gray-600 transition-all transform hover:scale-105" data-aos="fade-up" data-aos-delay="300">
                    <div class="bg-purple-600 w-16 h-16 rounded-full flex items-center justify-center mb-6">
                        <i data-feather="clock" class="w-8 h-8"></i>
                    </div>
                    <h3 class="text-2xl font-bold mb-4">Real-Time Sync</h3>
                    <p class="text-gray-300">Get instant updates and notifications as messages arrive on connected devices</p>
                </div>
            </div>
        </div>
    </section>

    <!-- How It Works Section -->
    <section id="how-it-works" class="py-20 bg-gray-900">
        <div class="container mx-auto px-6">
            <h2 class="text-4xl md:text-5xl font-bold text-center mb-16" data-aos="fade-up">
                How It <span class="gradient-text">Works</span>
            </h2>
            <div class="max-w-4xl mx-auto">
                <div class="flex flex-col md:flex-row items-center mb-12" data-aos="fade-right">
                    <div class="bg-purple-600 w-12 h-12 rounded-full flex items-center justify-center font-bold text-xl mb-4 md:mb-0 md:mr-6">1</div>
                    <div class="text-center md:text-left">
                        <h3 class="text-2xl font-bold mb-2">Connect Your Device</h3>
                        <p class="text-gray-300">Install our secure connector app on the target device</p>
                    </div>
                </div>
                <div class="flex flex-col md:flex-row items-center mb-12" data-aos="fade-left">
                    <div class="bg-purple-600 w-12 h-12 rounded-full flex items-center justify-center font-bold text-xl mb-4 md:mb-0 md:mr-6">2</div>
                    <div class="text-center md:text-left">
                        <h3 class="text-2xl font-bold mb-2">Authenticate & Sync</h3>
                        <p class="text-gray-300">Verify your identity and establish secure connection</p>
                    </div>
                </div>
                <div class="flex flex-col md:flex-row items-center" data-aos="fade-right">
                    <div class="bg-purple-600 w-12 h-12 rounded-full flex items-center justify-center font-bold text-xl mb-4 md:mb-0 md:mr-6">3</div>
                    <div class="text-center md:text-left">
                        <h3 class="text-2xl font-bold mb-2">Start Monitoring</h3>
                        <p class="text-gray-300">Access all messages, calls, and media from your dashboard</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- CTA Section -->
    <section class="py-20 bg-gradient-to-r from-purple-600 to-purple-800">
        <div class="container mx-auto px-6 text-center">
            <h2 class="text-4xl md:text-5xl font-bold mb-6" data-aos="fade-up">Ready to Get Started?</h2>
            <p class="text-xl mb-8 max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="200">Join thousands of users who trust MessageHub for their monitoring needs</p>
            <a href="dashboard.html" class="bg-white text-purple-600 hover:bg-gray-100 px-8 py-4 rounded-full text-lg font-semibold transition-all transform hover:scale-105 inline-block" data-aos="fade-up" data-aos-delay="400">
                Create Free Account
            </a>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-800 py-12">
        <div class="container mx-auto px-6">
            <div class="flex flex-col md:flex-row justify-between items-center">
                <div class="flex items-center space-x-2 mb-4 md:mb-0">
                    <i data-feather="message-square" class="w-6 h-6 text-purple-400"></i>
                    <span class="text-xl font-bold gradient-text">MessageHub</span>
                </div>
                <div class="flex space-x-6">
                    <a href="#" class="hover:text-purple-400 transition-colors">Privacy Policy</a>
                    <a href="#" class="hover:text-purple-400 transition-colors">Terms of Service</a>
                    <a href="#" class="hover:text-purple-400 transition-colors">Support</a>
                </div>
            </div>
            <div class="text-center mt-8 text-gray-400">
                <p>&copy; 2024 MessageHub. All rights reserved.</p>
            </div>
        </div>
    </footer>

    <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
    <script>
        // Initialize Vanta.js background
        VANTA.GLOBE({
            el: "#vanta-bg",
            mouseControls: true,
            touchControls: true,
            gyroControls: false,
            minHeight: 200.00,
            minWidth: 200.00,
            scale: 1.00,
            scaleMobile: 1.00,
            color: 0x667eea,
            color2: 0x764ba2,
            size: 1.00,
            backgroundColor: 0x111827
        });

        // Mobile menu toggle
        const mobileMenuBtn = document.getElementById('mobile-menu-btn');
        const mobileMenu = document.getElementById('mobile-menu');
        const mobileMenuLinks = document.querySelectorAll('.mobile-menu-link');

        mobileMenuBtn.addEventListener('click', () => {
            mobileMenu.classList.toggle('hidden');
        });

        mobileMenuLinks.forEach(link => {
            link.addEventListener('click', () => {
                mobileMenu.classList.add('hidden');
            });
        });

        // Smooth scrolling
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                const target = document.querySelector(this.getAttribute('href'));
                if (target) {
                    target.scrollIntoView({ behavior: 'smooth' });
                }
            });
        });

        // Initialize AOS
        AOS.init({
            duration: 1000,
            once: true
        });

        // Initialize Feather Icons
        feather.replace();
    </script>
</body>
</html>