File size: 14,808 Bytes
a58c788
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Software Information</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">
    <style>
        .gradient-bg {
            background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
        }
        .software-card {
            transform-style: preserve-3d;
            transition: all 0.5s ease;
        }
        .software-card:hover {
            transform: translateY(-10px) rotateX(5deg);
            box-shadow: 0 20px 30px rgba(0,0,0,0.2);
        }
        .feature-icon {
            transition: all 0.3s ease;
        }
        .feature-icon:hover {
            transform: scale(1.2) rotate(10deg);
        }
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        .floating {
            animation: float 3s ease-in-out infinite;
        }
    </style>
</head>
<body class="bg-gray-100 font-sans">
    <div class="min-h-screen flex flex-col">
        <!-- Header -->
        <header class="gradient-bg text-white py-8 px-4 shadow-lg">
            <div class="container mx-auto flex flex-col md:flex-row items-center justify-between">
                <div class="flex items-center mb-6 md:mb-0">
                    <div class="w-16 h-16 bg-white rounded-full flex items-center justify-center mr-4 floating">
                        <i class="fas fa-cube text-3xl text-purple-600"></i>
                    </div>
                    <div>
                        <h1 class="text-3xl md:text-4xl font-bold">NexusSoft</h1>
                        <p class="text-purple-200">Innovative Solutions for Modern Problems</p>
                    </div>
                </div>
                <div class="flex space-x-4">
                    <button class="px-6 py-2 bg-white text-purple-600 rounded-full font-semibold hover:bg-purple-100 transition">
                        Download
                    </button>
                    <button class="px-6 py-2 border-2 border-white text-white rounded-full font-semibold hover:bg-white hover:text-purple-600 transition">
                        Learn More
                    </button>
                </div>
            </div>
        </header>

        <!-- Main Content -->
        <main class="flex-grow container mx-auto px-4 py-12">
            <!-- Software Info Card -->
            <div class="max-w-4xl mx-auto bg-white rounded-xl shadow-xl overflow-hidden software-card mb-16">
                <div class="md:flex">
                    <div class="md:w-1/2 p-8 gradient-bg text-white flex flex-col justify-center">
                        <div class="flex items-center mb-6">
                            <i class="fas fa-star text-yellow-300 text-2xl mr-3"></i>
                            <h2 class="text-2xl font-bold">NexusSoft Pro 2023</h2>
                        </div>
                        <p class="mb-6 text-purple-100 leading-relaxed">
                            The ultimate productivity suite that transforms how you work. With cutting-edge AI integration and seamless cloud synchronization, NexusSoft Pro empowers you to achieve more in less time.
                        </p>
                        <div class="flex items-center">
                            <div class="mr-6">
                                <p class="text-sm text-purple-200">Version</p>
                                <p class="font-bold">4.2.1</p>
                            </div>
                            <div>
                                <p class="text-sm text-purple-200">Release Date</p>
                                <p class="font-bold">June 15, 2023</p>
                            </div>
                        </div>
                    </div>
                    <div class="md:w-1/2 p-8">
                        <div class="flex justify-between items-center mb-6">
                            <h3 class="text-xl font-bold text-gray-800">Key Features</h3>
                            <div class="w-10 h-10 bg-purple-100 rounded-full flex items-center justify-center">
                                <i class="fas fa-bolt text-purple-600"></i>
                            </div>
                        </div>
                        <ul class="space-y-4">
                            <li class="flex items-start">
                                <div class="feature-icon bg-green-100 p-2 rounded-full mr-3">
                                    <i class="fas fa-brain text-green-600"></i>
                                </div>
                                <div>
                                    <h4 class="font-semibold text-gray-800">AI-Powered Automation</h4>
                                    <p class="text-gray-600 text-sm">Smart workflows that learn from your patterns</p>
                                </div>
                            </li>
                            <li class="flex items-start">
                                <div class="feature-icon bg-blue-100 p-2 rounded-full mr-3">
                                    <i class="fas fa-cloud text-blue-600"></i>
                                </div>
                                <div>
                                    <h4 class="font-semibold text-gray-800">Real-Time Collaboration</h4>
                                    <p class="text-gray-600 text-sm">Work simultaneously with team members worldwide</p>
                                </div>
                            </li>
                            <li class="flex items-start">
                                <div class="feature-icon bg-yellow-100 p-2 rounded-full mr-3">
                                    <i class="fas fa-shield-alt text-yellow-600"></i>
                                </div>
                                <div>
                                    <h4 class="font-semibold text-gray-800">Enterprise Security</h4>
                                    <p class="text-gray-600 text-sm">Military-grade encryption for your data</p>
                                </div>
                            </li>
                        </ul>
                    </div>
                </div>
            </div>

            <!-- System Requirements -->
            <div class="max-w-4xl mx-auto bg-white rounded-xl shadow-md p-8 mb-12">
                <h2 class="text-2xl font-bold text-gray-800 mb-6 flex items-center">
                    <i class="fas fa-laptop-code text-purple-600 mr-3"></i>
                    System Requirements
                </h2>
                <div class="grid md:grid-cols-2 gap-6">
                    <div>
                        <h3 class="font-semibold text-gray-700 mb-3">Minimum</h3>
                        <ul class="space-y-2 text-gray-600">
                            <li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> Windows 10 or macOS 10.15+</li>
                            <li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> 4GB RAM</li>
                            <li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> 2GHz dual-core processor</li>
                            <li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> 2GB free disk space</li>
                        </ul>
                    </div>
                    <div>
                        <h3 class="font-semibold text-gray-700 mb-3">Recommended</h3>
                        <ul class="space-y-2 text-gray-600">
                            <li class="flex items-center"><i class="fas fa-star text-yellow-500 mr-2"></i> Windows 11 or macOS 12+</li>
                            <li class="flex items-center"><i class="fas fa-star text-yellow-500 mr-2"></i> 8GB RAM or more</li>
                            <li class="flex items-center"><i class="fas fa-star text-yellow-500 mr-2"></i> 3GHz quad-core processor</li>
                            <li class="flex items-center"><i class="fas fa-star text-yellow-500 mr-2"></i> SSD with 5GB free space</li>
                        </ul>
                    </div>
                </div>
            </div>

            <!-- Testimonials -->
            <div class="max-w-4xl mx-auto">
                <h2 class="text-2xl font-bold text-gray-800 mb-8 text-center">What Our Users Say</h2>
                <div class="grid md:grid-cols-2 gap-6">
                    <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
                        <div class="flex items-center mb-4">
                            <div class="w-12 h-12 bg-purple-100 rounded-full flex items-center justify-center mr-3">
                                <i class="fas fa-user text-purple-600"></i>
                            </div>
                            <div>
                                <h4 class="font-semibold">Sarah Johnson</h4>
                                <p class="text-sm text-gray-500">Marketing Director</p>
                            </div>
                        </div>
                        <p class="text-gray-600 italic">"NexusSoft has completely transformed our workflow. The automation features saved us over 20 hours per week!"</p>
                        <div class="flex mt-3">
                            <i class="fas fa-star text-yellow-400"></i>
                            <i class="fas fa-star text-yellow-400"></i>
                            <i class="fas fa-star text-yellow-400"></i>
                            <i class="fas fa-star text-yellow-400"></i>
                            <i class="fas fa-star text-yellow-400"></i>
                        </div>
                    </div>
                    <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
                        <div class="flex items-center mb-4">
                            <div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center mr-3">
                                <i class="fas fa-user text-blue-600"></i>
                            </div>
                            <div>
                                <h4 class="font-semibold">Michael Chen</h4>
                                <p class="text-sm text-gray-500">Software Engineer</p>
                            </div>
                        </div>
                        <p class="text-gray-600 italic">"The collaboration tools are unmatched. Our remote team has never been more productive and connected."</p>
                        <div class="flex mt-3">
                            <i class="fas fa-star text-yellow-400"></i>
                            <i class="fas fa-star text-yellow-400"></i>
                            <i class="fas fa-star text-yellow-400"></i>
                            <i class="fas fa-star text-yellow-400"></i>
                            <i class="fas fa-star-half-alt text-yellow-400"></i>
                        </div>
                    </div>
                </div>
            </div>
        </main>

        <!-- Footer -->
        <footer class="bg-gray-800 text-white py-8 px-4">
            <div class="container mx-auto">
                <div class="flex flex-col md:flex-row justify-between items-center">
                    <div class="mb-6 md:mb-0">
                        <div class="flex items-center">
                            <i class="fas fa-cube text-2xl text-purple-400 mr-2"></i>
                            <span class="text-xl font-bold">NexusSoft</span>
                        </div>
                        <p class="text-gray-400 mt-2">© 2023 All Rights Reserved</p>
                    </div>
                    <div class="flex space-x-6">
                        <a href="#" class="text-gray-300 hover:text-white transition">
                            <i class="fab fa-twitter text-xl"></i>
                        </a>
                        <a href="#" class="text-gray-300 hover:text-white transition">
                            <i class="fab fa-facebook text-xl"></i>
                        </a>
                        <a href="#" class="text-gray-300 hover:text-white transition">
                            <i class="fab fa-linkedin text-xl"></i>
                        </a>
                        <a href="#" class="text-gray-300 hover:text-white transition">
                            <i class="fab fa-github text-xl"></i>
                        </a>
                    </div>
                </div>
            </div>
        </footer>
    </div>

    <script>
        // Simple animation on page load
        document.addEventListener('DOMContentLoaded', function() {
            const elements = document.querySelectorAll('.software-card, .feature-icon');
            elements.forEach((el, index) => {
                setTimeout(() => {
                    el.style.opacity = '1';
                    el.style.transform = 'translateY(0)';
                }, 100 * index);
            });
        });

        // Change testimonial color on hover
        const testimonials = document.querySelectorAll('.bg-white');
        testimonials.forEach(testimonial => {
            testimonial.addEventListener('mouseenter', function() {
                const icon = this.querySelector('.fa-user');
                if (icon.classList.contains('text-purple-600')) {
                    this.classList.add('border-l-4', 'border-purple-500');
                } else if (icon.classList.contains('text-blue-600')) {
                    this.classList.add('border-l-4', 'border-blue-500');
                }
            });
            testimonial.addEventListener('mouseleave', function() {
                this.classList.remove('border-l-4', 'border-purple-500', 'border-blue-500');
            });
        });
    </script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Leviathanxy/test-deepsite-1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>