Spaces:
Running
Running
Add 2 files
Browse files- README.md +7 -5
- index.html +262 -19
README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: static
|
7 |
pinned: false
|
|
|
|
|
8 |
---
|
9 |
|
10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
+
title: test-deepsite-1
|
3 |
+
emoji: 🐳
|
4 |
+
colorFrom: gray
|
5 |
+
colorTo: purple
|
6 |
sdk: static
|
7 |
pinned: false
|
8 |
+
tags:
|
9 |
+
- deepsite
|
10 |
---
|
11 |
|
12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
index.html
CHANGED
@@ -1,19 +1,262 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Software Information</title>
|
7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
8 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
9 |
+
<style>
|
10 |
+
.gradient-bg {
|
11 |
+
background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
|
12 |
+
}
|
13 |
+
.software-card {
|
14 |
+
transform-style: preserve-3d;
|
15 |
+
transition: all 0.5s ease;
|
16 |
+
}
|
17 |
+
.software-card:hover {
|
18 |
+
transform: translateY(-10px) rotateX(5deg);
|
19 |
+
box-shadow: 0 20px 30px rgba(0,0,0,0.2);
|
20 |
+
}
|
21 |
+
.feature-icon {
|
22 |
+
transition: all 0.3s ease;
|
23 |
+
}
|
24 |
+
.feature-icon:hover {
|
25 |
+
transform: scale(1.2) rotate(10deg);
|
26 |
+
}
|
27 |
+
@keyframes float {
|
28 |
+
0%, 100% {
|
29 |
+
transform: translateY(0);
|
30 |
+
}
|
31 |
+
50% {
|
32 |
+
transform: translateY(-10px);
|
33 |
+
}
|
34 |
+
}
|
35 |
+
.floating {
|
36 |
+
animation: float 3s ease-in-out infinite;
|
37 |
+
}
|
38 |
+
</style>
|
39 |
+
</head>
|
40 |
+
<body class="bg-gray-100 font-sans">
|
41 |
+
<div class="min-h-screen flex flex-col">
|
42 |
+
<!-- Header -->
|
43 |
+
<header class="gradient-bg text-white py-8 px-4 shadow-lg">
|
44 |
+
<div class="container mx-auto flex flex-col md:flex-row items-center justify-between">
|
45 |
+
<div class="flex items-center mb-6 md:mb-0">
|
46 |
+
<div class="w-16 h-16 bg-white rounded-full flex items-center justify-center mr-4 floating">
|
47 |
+
<i class="fas fa-cube text-3xl text-purple-600"></i>
|
48 |
+
</div>
|
49 |
+
<div>
|
50 |
+
<h1 class="text-3xl md:text-4xl font-bold">NexusSoft</h1>
|
51 |
+
<p class="text-purple-200">Innovative Solutions for Modern Problems</p>
|
52 |
+
</div>
|
53 |
+
</div>
|
54 |
+
<div class="flex space-x-4">
|
55 |
+
<button class="px-6 py-2 bg-white text-purple-600 rounded-full font-semibold hover:bg-purple-100 transition">
|
56 |
+
Download
|
57 |
+
</button>
|
58 |
+
<button class="px-6 py-2 border-2 border-white text-white rounded-full font-semibold hover:bg-white hover:text-purple-600 transition">
|
59 |
+
Learn More
|
60 |
+
</button>
|
61 |
+
</div>
|
62 |
+
</div>
|
63 |
+
</header>
|
64 |
+
|
65 |
+
<!-- Main Content -->
|
66 |
+
<main class="flex-grow container mx-auto px-4 py-12">
|
67 |
+
<!-- Software Info Card -->
|
68 |
+
<div class="max-w-4xl mx-auto bg-white rounded-xl shadow-xl overflow-hidden software-card mb-16">
|
69 |
+
<div class="md:flex">
|
70 |
+
<div class="md:w-1/2 p-8 gradient-bg text-white flex flex-col justify-center">
|
71 |
+
<div class="flex items-center mb-6">
|
72 |
+
<i class="fas fa-star text-yellow-300 text-2xl mr-3"></i>
|
73 |
+
<h2 class="text-2xl font-bold">NexusSoft Pro 2023</h2>
|
74 |
+
</div>
|
75 |
+
<p class="mb-6 text-purple-100 leading-relaxed">
|
76 |
+
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.
|
77 |
+
</p>
|
78 |
+
<div class="flex items-center">
|
79 |
+
<div class="mr-6">
|
80 |
+
<p class="text-sm text-purple-200">Version</p>
|
81 |
+
<p class="font-bold">4.2.1</p>
|
82 |
+
</div>
|
83 |
+
<div>
|
84 |
+
<p class="text-sm text-purple-200">Release Date</p>
|
85 |
+
<p class="font-bold">June 15, 2023</p>
|
86 |
+
</div>
|
87 |
+
</div>
|
88 |
+
</div>
|
89 |
+
<div class="md:w-1/2 p-8">
|
90 |
+
<div class="flex justify-between items-center mb-6">
|
91 |
+
<h3 class="text-xl font-bold text-gray-800">Key Features</h3>
|
92 |
+
<div class="w-10 h-10 bg-purple-100 rounded-full flex items-center justify-center">
|
93 |
+
<i class="fas fa-bolt text-purple-600"></i>
|
94 |
+
</div>
|
95 |
+
</div>
|
96 |
+
<ul class="space-y-4">
|
97 |
+
<li class="flex items-start">
|
98 |
+
<div class="feature-icon bg-green-100 p-2 rounded-full mr-3">
|
99 |
+
<i class="fas fa-brain text-green-600"></i>
|
100 |
+
</div>
|
101 |
+
<div>
|
102 |
+
<h4 class="font-semibold text-gray-800">AI-Powered Automation</h4>
|
103 |
+
<p class="text-gray-600 text-sm">Smart workflows that learn from your patterns</p>
|
104 |
+
</div>
|
105 |
+
</li>
|
106 |
+
<li class="flex items-start">
|
107 |
+
<div class="feature-icon bg-blue-100 p-2 rounded-full mr-3">
|
108 |
+
<i class="fas fa-cloud text-blue-600"></i>
|
109 |
+
</div>
|
110 |
+
<div>
|
111 |
+
<h4 class="font-semibold text-gray-800">Real-Time Collaboration</h4>
|
112 |
+
<p class="text-gray-600 text-sm">Work simultaneously with team members worldwide</p>
|
113 |
+
</div>
|
114 |
+
</li>
|
115 |
+
<li class="flex items-start">
|
116 |
+
<div class="feature-icon bg-yellow-100 p-2 rounded-full mr-3">
|
117 |
+
<i class="fas fa-shield-alt text-yellow-600"></i>
|
118 |
+
</div>
|
119 |
+
<div>
|
120 |
+
<h4 class="font-semibold text-gray-800">Enterprise Security</h4>
|
121 |
+
<p class="text-gray-600 text-sm">Military-grade encryption for your data</p>
|
122 |
+
</div>
|
123 |
+
</li>
|
124 |
+
</ul>
|
125 |
+
</div>
|
126 |
+
</div>
|
127 |
+
</div>
|
128 |
+
|
129 |
+
<!-- System Requirements -->
|
130 |
+
<div class="max-w-4xl mx-auto bg-white rounded-xl shadow-md p-8 mb-12">
|
131 |
+
<h2 class="text-2xl font-bold text-gray-800 mb-6 flex items-center">
|
132 |
+
<i class="fas fa-laptop-code text-purple-600 mr-3"></i>
|
133 |
+
System Requirements
|
134 |
+
</h2>
|
135 |
+
<div class="grid md:grid-cols-2 gap-6">
|
136 |
+
<div>
|
137 |
+
<h3 class="font-semibold text-gray-700 mb-3">Minimum</h3>
|
138 |
+
<ul class="space-y-2 text-gray-600">
|
139 |
+
<li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> Windows 10 or macOS 10.15+</li>
|
140 |
+
<li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> 4GB RAM</li>
|
141 |
+
<li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> 2GHz dual-core processor</li>
|
142 |
+
<li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> 2GB free disk space</li>
|
143 |
+
</ul>
|
144 |
+
</div>
|
145 |
+
<div>
|
146 |
+
<h3 class="font-semibold text-gray-700 mb-3">Recommended</h3>
|
147 |
+
<ul class="space-y-2 text-gray-600">
|
148 |
+
<li class="flex items-center"><i class="fas fa-star text-yellow-500 mr-2"></i> Windows 11 or macOS 12+</li>
|
149 |
+
<li class="flex items-center"><i class="fas fa-star text-yellow-500 mr-2"></i> 8GB RAM or more</li>
|
150 |
+
<li class="flex items-center"><i class="fas fa-star text-yellow-500 mr-2"></i> 3GHz quad-core processor</li>
|
151 |
+
<li class="flex items-center"><i class="fas fa-star text-yellow-500 mr-2"></i> SSD with 5GB free space</li>
|
152 |
+
</ul>
|
153 |
+
</div>
|
154 |
+
</div>
|
155 |
+
</div>
|
156 |
+
|
157 |
+
<!-- Testimonials -->
|
158 |
+
<div class="max-w-4xl mx-auto">
|
159 |
+
<h2 class="text-2xl font-bold text-gray-800 mb-8 text-center">What Our Users Say</h2>
|
160 |
+
<div class="grid md:grid-cols-2 gap-6">
|
161 |
+
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
|
162 |
+
<div class="flex items-center mb-4">
|
163 |
+
<div class="w-12 h-12 bg-purple-100 rounded-full flex items-center justify-center mr-3">
|
164 |
+
<i class="fas fa-user text-purple-600"></i>
|
165 |
+
</div>
|
166 |
+
<div>
|
167 |
+
<h4 class="font-semibold">Sarah Johnson</h4>
|
168 |
+
<p class="text-sm text-gray-500">Marketing Director</p>
|
169 |
+
</div>
|
170 |
+
</div>
|
171 |
+
<p class="text-gray-600 italic">"NexusSoft has completely transformed our workflow. The automation features saved us over 20 hours per week!"</p>
|
172 |
+
<div class="flex mt-3">
|
173 |
+
<i class="fas fa-star text-yellow-400"></i>
|
174 |
+
<i class="fas fa-star text-yellow-400"></i>
|
175 |
+
<i class="fas fa-star text-yellow-400"></i>
|
176 |
+
<i class="fas fa-star text-yellow-400"></i>
|
177 |
+
<i class="fas fa-star text-yellow-400"></i>
|
178 |
+
</div>
|
179 |
+
</div>
|
180 |
+
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
|
181 |
+
<div class="flex items-center mb-4">
|
182 |
+
<div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center mr-3">
|
183 |
+
<i class="fas fa-user text-blue-600"></i>
|
184 |
+
</div>
|
185 |
+
<div>
|
186 |
+
<h4 class="font-semibold">Michael Chen</h4>
|
187 |
+
<p class="text-sm text-gray-500">Software Engineer</p>
|
188 |
+
</div>
|
189 |
+
</div>
|
190 |
+
<p class="text-gray-600 italic">"The collaboration tools are unmatched. Our remote team has never been more productive and connected."</p>
|
191 |
+
<div class="flex mt-3">
|
192 |
+
<i class="fas fa-star text-yellow-400"></i>
|
193 |
+
<i class="fas fa-star text-yellow-400"></i>
|
194 |
+
<i class="fas fa-star text-yellow-400"></i>
|
195 |
+
<i class="fas fa-star text-yellow-400"></i>
|
196 |
+
<i class="fas fa-star-half-alt text-yellow-400"></i>
|
197 |
+
</div>
|
198 |
+
</div>
|
199 |
+
</div>
|
200 |
+
</div>
|
201 |
+
</main>
|
202 |
+
|
203 |
+
<!-- Footer -->
|
204 |
+
<footer class="bg-gray-800 text-white py-8 px-4">
|
205 |
+
<div class="container mx-auto">
|
206 |
+
<div class="flex flex-col md:flex-row justify-between items-center">
|
207 |
+
<div class="mb-6 md:mb-0">
|
208 |
+
<div class="flex items-center">
|
209 |
+
<i class="fas fa-cube text-2xl text-purple-400 mr-2"></i>
|
210 |
+
<span class="text-xl font-bold">NexusSoft</span>
|
211 |
+
</div>
|
212 |
+
<p class="text-gray-400 mt-2">© 2023 All Rights Reserved</p>
|
213 |
+
</div>
|
214 |
+
<div class="flex space-x-6">
|
215 |
+
<a href="#" class="text-gray-300 hover:text-white transition">
|
216 |
+
<i class="fab fa-twitter text-xl"></i>
|
217 |
+
</a>
|
218 |
+
<a href="#" class="text-gray-300 hover:text-white transition">
|
219 |
+
<i class="fab fa-facebook text-xl"></i>
|
220 |
+
</a>
|
221 |
+
<a href="#" class="text-gray-300 hover:text-white transition">
|
222 |
+
<i class="fab fa-linkedin text-xl"></i>
|
223 |
+
</a>
|
224 |
+
<a href="#" class="text-gray-300 hover:text-white transition">
|
225 |
+
<i class="fab fa-github text-xl"></i>
|
226 |
+
</a>
|
227 |
+
</div>
|
228 |
+
</div>
|
229 |
+
</div>
|
230 |
+
</footer>
|
231 |
+
</div>
|
232 |
+
|
233 |
+
<script>
|
234 |
+
// Simple animation on page load
|
235 |
+
document.addEventListener('DOMContentLoaded', function() {
|
236 |
+
const elements = document.querySelectorAll('.software-card, .feature-icon');
|
237 |
+
elements.forEach((el, index) => {
|
238 |
+
setTimeout(() => {
|
239 |
+
el.style.opacity = '1';
|
240 |
+
el.style.transform = 'translateY(0)';
|
241 |
+
}, 100 * index);
|
242 |
+
});
|
243 |
+
});
|
244 |
+
|
245 |
+
// Change testimonial color on hover
|
246 |
+
const testimonials = document.querySelectorAll('.bg-white');
|
247 |
+
testimonials.forEach(testimonial => {
|
248 |
+
testimonial.addEventListener('mouseenter', function() {
|
249 |
+
const icon = this.querySelector('.fa-user');
|
250 |
+
if (icon.classList.contains('text-purple-600')) {
|
251 |
+
this.classList.add('border-l-4', 'border-purple-500');
|
252 |
+
} else if (icon.classList.contains('text-blue-600')) {
|
253 |
+
this.classList.add('border-l-4', 'border-blue-500');
|
254 |
+
}
|
255 |
+
});
|
256 |
+
testimonial.addEventListener('mouseleave', function() {
|
257 |
+
this.classList.remove('border-l-4', 'border-purple-500', 'border-blue-500');
|
258 |
+
});
|
259 |
+
});
|
260 |
+
</script>
|
261 |
+
<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>
|
262 |
+
</html>
|