Spaces:
Running
Running
File size: 26,224 Bytes
0834fa7 |
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 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern 3D Website</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<style>
/* Custom CSS for 3D effect */
body {
margin: 0;
overflow-x: hidden;
font-family: 'Inter', sans-serif;
}
#canvas-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.content {
position: relative;
z-index: 1;
min-height: 100vh;
color: white;
}
.card {
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.1);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-glow {
position: relative;
overflow: hidden;
z-index: 1;
}
.btn-glow::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, #00dbde, #fc00ff, #00dbde, #fc00ff);
background-size: 400%;
z-index: -1;
filter: blur(5px);
opacity: 0;
transition: 0.5s;
}
.btn-glow:hover::before {
opacity: 0.7;
animation: animate 8s linear infinite;
}
@keyframes animate {
0% { background-position: 0 0; }
50% { background-position: 300% 0; }
100% { background-position: 0 0; }
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background: linear-gradient(90deg, #00dbde, #fc00ff);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.skill-bar {
height: 8px;
border-radius: 4px;
background: rgba(255, 255, 255, 0.2);
overflow: hidden;
}
.skill-progress {
height: 100%;
border-radius: 4px;
background: linear-gradient(90deg, #00dbde, #fc00ff);
transition: width 1s ease-in-out;
}
</style>
</head>
<body>
<div id="canvas-container"></div>
<div class="content">
<!-- Navigation -->
<nav class="px-6 py-4 flex justify-between items-center">
<div class="text-2xl font-bold bg-gradient-to-r from-cyan-400 to-purple-500 bg-clip-text text-transparent">
Demo
</div>
<div class="hidden md:flex space-x-8">
<a href="https://huggingface.co/AAhad" class="nav-link text-white hover:text-purple-300 transition">About</a>
</div>
<button class="md:hidden text-white">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</nav>
<!-- Hero Section -->
<section class="container mx-auto px-6 py-20 md:py-32">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight">
<span class="bg-gradient-to-r from-cyan-400 to-purple-500 bg-clip-text text-transparent">Deepsite</span> Generated Site Demo
</h1>
<p class="text-lg text-gray-300 mb-8">
This demonstrate Deepseek capabilities to easily generate single page web application easily and quickly
</p>
<div class="flex space-x-4">
<button class="btn-glow px-8 py-3 rounded-full bg-gradient-to-r from-cyan-500 to-purple-500 text-white font-semibold">
Get Started
</button>
<a href="#about" class="px-8 py-3 rounded-full border border-white text-white font-semibold hover:bg-white hover:bg-opacity-10 transition">
About Me
</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="card w-80 h-80 md:w-96 md:h-96 flex items-center justify-center">
<div class="text-center p-6">
<div class="text-5xl mb-4">β¨</div>
<h3 class="text-xl font-semibold mb-2">Deepseek 3D</h3>
<p class="text-gray-300">Move your cursor to see the dynamic background respond to your movements.</p>
</div>
</div>
</div>
</div>
</section>
<!-- About Me Section -->
<section id="about" class="container mx-auto px-6 py-20">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16">
About <span class="bg-gradient-to-r from-cyan-400 to-purple-500 bg-clip-text text-transparent">Me</span>
</h2>
<div class="flex flex-col lg:flex-row gap-12 items-center">
<div class="lg:w-1/3">
<div class="card p-8 h-full">
<div class="flex flex-col items-center">
<div class="w-40 h-40 rounded-full bg-gradient-to-r from-cyan-400 to-purple-500 p-1 mb-6">
<div class="w-full h-full rounded-full bg-gray-900 overflow-hidden">
<img src="https://avatars.githubusercontent.com/u/124599?v=4" alt="Profile" class="w-full h-full object-cover">
</div>
</div>
<h3 class="text-2xl font-bold mb-2">AAhad</h3>
<p class="text-cyan-300 mb-4">AI & Web Developer</p>
<p class="text-gray-300 text-center mb-6">
Passionate about creating innovative solutions that bridge the gap between technology and human experience.
</p>
<a href="https://huggingface.co/AAhad" target="_blank" class="btn-glow px-6 py-2 rounded-full bg-gradient-to-r from-cyan-500 to-purple-500 text-white font-semibold flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mr-2">
<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path>
<polyline points="15 3 21 3 21 9"></polyline>
<line x1="10" y1="14" x2="21" y2="3"></line>
</svg>
My Hugging Face
</a>
</div>
</div>
</div>
<div class="lg:w-2/3">
<div class="card p-8 h-full">
<h3 class="text-xl font-semibold mb-6">My Journey</h3>
<p class="text-gray-300 mb-6">
With over 5 years of experience in AI and web development, I've dedicated my career to pushing the boundaries of what's possible with technology. My work focuses on creating intelligent systems that enhance human capabilities and deliver meaningful experiences.
</p>
<div class="mb-8">
<h4 class="text-lg font-semibold mb-4">Skills & Expertise</h4>
<div class="space-y-4">
<div>
<div class="flex justify-between mb-1">
<span>AI/ML Development</span>
<span>95%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 95%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span>Web Development</span>
<span>90%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 90%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span>Natural Language Processing</span>
<span>85%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 85%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span>Computer Vision</span>
<span>80%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 80%"></div>
</div>
</div>
</div>
</div>
<h4 class="text-lg font-semibold mb-4">Projects & Contributions</h4>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-6">
<div class="card p-4 hover:bg-white hover:bg-opacity-10">
<h5 class="font-medium mb-1">Hugging Face Models</h5>
<p class="text-sm text-gray-400">State-of-the-art NLP models</p>
</div>
<div class="card p-4 hover:bg-white hover:bg-opacity-10">
<h5 class="font-medium mb-1">AI Applications</h5>
<p class="text-sm text-gray-400">Real-world AI solutions</p>
</div>
<div class="card p-4 hover:bg-white hover:bg-opacity-10">
<h5 class="font-medium mb-1">Web Platforms</h5>
<p class="text-sm text-gray-400">Interactive web experiences</p>
</div>
<div class="card p-4 hover:bg-white hover:bg-opacity-10">
<h5 class="font-medium mb-1">Open Source</h5>
<p class="text-sm text-gray-400">Community contributions</p>
</div>
</div>
<div class="flex flex-wrap gap-4">
<span class="px-3 py-1 rounded-full text-sm bg-cyan-900 bg-opacity-50 text-cyan-300">Python</span>
<span class="px-3 py-1 rounded-full text-sm bg-purple-900 bg-opacity-50 text-purple-300">TensorFlow</span>
<span class="px-3 py-1 rounded-full text-sm bg-cyan-900 bg-opacity-50 text-cyan-300">PyTorch</span>
<span class="px-3 py-1 rounded-full text-sm bg-purple-900 bg-opacity-50 text-purple-300">JavaScript</span>
<span class="px-3 py-1 rounded-full text-sm bg-cyan-900 bg-opacity-50 text-cyan-300">React</span>
<span class="px-3 py-1 rounded-full text-sm bg-purple-900 bg-opacity-50 text-purple-300">Node.js</span>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="container mx-auto px-6 py-20">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16">
Our <span class="bg-gradient-to-r from-cyan-400 to-purple-500 bg-clip-text text-transparent">Features</span>
</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="card p-8">
<div class="text-4xl mb-4 bg-gradient-to-r from-cyan-400 to-purple-500 bg-clip-text text-transparent">π</div>
<h3 class="text-xl font-semibold mb-3">Lightning Fast</h3>
<p class="text-gray-300">Optimized performance that ensures your website loads in milliseconds, keeping your visitors engaged.</p>
</div>
<!-- Feature 2 -->
<div class="card p-8">
<div class="text-4xl mb-4 bg-gradient-to-r from-cyan-400 to-purple-500 bg-clip-text text-transparent">π¨</div>
<h3 class="text-xl font-semibold mb-3">Stunning Design</h3>
<p class="text-gray-300">Custom designs tailored to your brand that captivate your audience and leave a lasting impression.</p>
</div>
<!-- Feature 3 -->
<div class="card p-8">
<div class="text-4xl mb-4 bg-gradient-to-r from-cyan-400 to-purple-500 bg-clip-text text-transparent">π</div>
<h3 class="text-xl font-semibold mb-3">Secure Platform</h3>
<p class="text-gray-300">Enterprise-grade security measures to protect your data and your customers' information.</p>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="container mx-auto px-6 py-20">
<div class="card p-12 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Digital Presence?</h2>
<p class="text-xl text-gray-300 mb-8 max-w-2xl mx-auto">
Join thousands of businesses that have elevated their brand with our innovative solutions.
</p>
<button class="btn-glow px-10 py-4 rounded-full bg-gradient-to-r from-cyan-500 to-purple-500 text-white font-semibold text-lg">
Start Your Journey Today
</button>
</div>
</section>
<!-- Footer -->
<footer class="border-t border-gray-800 py-12">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between">
<div class="mb-8 md:mb-0">
<div class="text-2xl font-bold bg-gradient-to-r from-cyan-400 to-purple-500 bg-clip-text text-transparent mb-4">
Demo
</div>
<p class="text-gray-400 max-w-xs">
Pioneering digital experiences that connect brands with their audiences in meaningful ways.
</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-8">
<div>
<h3 class="text-white font-semibold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">About</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
</ul>
</div>
<div>
<h3 class="text-white font-semibold mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Guides</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Support</a></li>
</ul>
</div>
<div>
<h3 class="text-white font-semibold mb-4">Legal</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Privacy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Terms</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Cookies</a></li>
</ul>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">
Β© 2023 Demo. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-twitter"><path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"></path></svg>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-instagram"><rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path><line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line></svg>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-linkedin"><path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path><rect x="2" y="9" width="4" height="12"></rect><circle cx="4" cy="4" r="2"></circle></svg>
</a>
</div>
</div>
</div>
</footer>
</div>
<script>
// Three.js 3D Particle Background
document.addEventListener('DOMContentLoaded', function() {
// Scene setup
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
const renderer = new THREE.WebGLRenderer({ alpha: true, antialias: true });
renderer.setSize(window.innerWidth, window.innerHeight);
document.getElementById('canvas-container').appendChild(renderer.domElement);
// Particles
const particlesGeometry = new THREE.BufferGeometry();
const particlesCount = 1500;
const posArray = new Float32Array(particlesCount * 3);
for(let i = 0; i < particlesCount * 3; i++) {
posArray[i] = (Math.random() - 0.5) * 10;
}
particlesGeometry.setAttribute('position', new THREE.BufferAttribute(posArray, 3));
// Particle material
const particlesMaterial = new THREE.PointsMaterial({
size: 0.02,
color: 0xffffff,
transparent: true,
opacity: 0.8,
blending: THREE.AdditiveBlending
});
// Particle system
const particlesSystem = new THREE.Points(particlesGeometry, particlesMaterial);
scene.add(particlesSystem);
// Camera position
camera.position.z = 3;
// Mouse movement effect
let mouseX = 0;
let mouseY = 0;
document.addEventListener('mousemove', (event) => {
mouseX = (event.clientX / window.innerWidth) * 2 - 1;
mouseY = -(event.clientY / window.innerHeight) * 2 + 1;
});
// Animation loop
function animate() {
requestAnimationFrame(animate);
particlesSystem.rotation.x += 0.0005;
particlesSystem.rotation.y += 0.0005;
// Mouse interaction
camera.position.x += (mouseX * 0.5 - camera.position.x) * 0.05;
camera.position.y += (mouseY * 0.5 - camera.position.y) * 0.05;
camera.lookAt(scene.position);
renderer.render(scene, camera);
}
animate();
// Handle window resize
window.addEventListener('resize', () => {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize(window.innerWidth, window.innerHeight);
});
// Mobile menu toggle
const mobileMenuButton = document.querySelector('.md\\:hidden');
const navLinks = document.querySelector('.hidden.md\\:flex');
mobileMenuButton.addEventListener('click', () => {
navLinks.classList.toggle('hidden');
navLinks.classList.toggle('flex');
navLinks.classList.toggle('flex-col');
navLinks.classList.toggle('absolute');
navLinks.classList.toggle('top-16');
navLinks.classList.toggle('left-0');
navLinks.classList.toggle('right-0');
navLinks.classList.toggle('bg-gray-900');
navLinks.classList.toggle('bg-opacity-90');
navLinks.classList.toggle('p-4');
navLinks.classList.toggle('space-y-4');
navLinks.classList.toggle('space-x-8');
});
// Animate skill bars on scroll
const skillBars = document.querySelectorAll('.skill-progress');
const animateSkills = () => {
skillBars.forEach(bar => {
const width = bar.style.width;
bar.style.width = '0%';
setTimeout(() => {
bar.style.width = width;
}, 100);
});
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
animateSkills();
observer.unobserve(entry.target);
}
});
}, { threshold: 0.1 });
document.querySelectorAll('.skill-bar').forEach(bar => {
observer.observe(bar);
});
});
</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=AAhad/deeksite-demo" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |