|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>Luminous Web Portal</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> |
|
|
@keyframes glow { |
|
|
0% { |
|
|
box-shadow: 0 0 5px rgba(59, 130, 246, 0.5); |
|
|
} |
|
|
50% { |
|
|
box-shadow: 0 0 20px rgba(59, 130, 246, 0.8); |
|
|
} |
|
|
100% { |
|
|
box-shadow: 0 0 5px rgba(59, 130, 246, 0.5); |
|
|
} |
|
|
} |
|
|
|
|
|
.glow-card { |
|
|
transition: all 0.3s ease; |
|
|
animation: glow 3s infinite; |
|
|
} |
|
|
|
|
|
.glow-card:hover { |
|
|
transform: translateY(-5px) scale(1.02); |
|
|
animation: none; |
|
|
box-shadow: 0 0 25px rgba(59, 130, 246, 0.9); |
|
|
} |
|
|
|
|
|
.visit-btn { |
|
|
transition: all 0.3s ease; |
|
|
background: linear-gradient(45deg, #3b82f6, #8b5cf6); |
|
|
} |
|
|
|
|
|
.visit-btn:hover { |
|
|
transform: translateY(-2px); |
|
|
box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4); |
|
|
} |
|
|
|
|
|
.slider { |
|
|
scroll-snap-type: x mandatory; |
|
|
} |
|
|
|
|
|
.slide { |
|
|
scroll-snap-align: start; |
|
|
} |
|
|
|
|
|
|
|
|
::-webkit-scrollbar { |
|
|
width: 8px; |
|
|
height: 8px; |
|
|
} |
|
|
|
|
|
::-webkit-scrollbar-track { |
|
|
background: #1a202c; |
|
|
} |
|
|
|
|
|
::-webkit-scrollbar-thumb { |
|
|
background: #3b82f6; |
|
|
border-radius: 10px; |
|
|
} |
|
|
|
|
|
::-webkit-scrollbar-thumb:hover { |
|
|
background: #2563eb; |
|
|
} |
|
|
</style> |
|
|
</head> |
|
|
<body class="bg-gray-900 text-gray-100 min-h-screen flex flex-col"> |
|
|
|
|
|
<header class="bg-gradient-to-r from-blue-900 to-purple-900 py-8 px-4 md:px-8 text-center"> |
|
|
<div class="max-w-6xl mx-auto"> |
|
|
<h1 class="text-4xl md:text-5xl font-bold mb-4">Luminous Web Portal</h1> |
|
|
<p class="text-xl md:text-2xl opacity-90">Discover the best resources on the web</p> |
|
|
</div> |
|
|
</header> |
|
|
|
|
|
|
|
|
<div class="py-8 px-4 md:px-8 max-w-6xl mx-auto"> |
|
|
<h2 class="text-2xl font-bold mb-6 text-center">Featured Resources</h2> |
|
|
<div class="slider flex overflow-x-auto space-x-4 py-4 px-2 rounded-lg bg-gray-800"> |
|
|
<div class="slide flex-shrink-0 w-64 h-40 bg-gradient-to-br from-blue-800 to-purple-800 rounded-lg flex items-center justify-center"> |
|
|
<div class="text-center p-4"> |
|
|
<i class="fas fa-gem text-3xl mb-2 text-blue-300"></i> |
|
|
<h3 class="font-bold">Premium Tools</h3> |
|
|
<p class="text-sm opacity-80">Top quality resources</p> |
|
|
</div> |
|
|
</div> |
|
|
<div class="slide flex-shrink-0 w-64 h-40 bg-gradient-to-br from-purple-800 to-pink-800 rounded-lg flex items-center justify-center"> |
|
|
<div class="text-center p-4"> |
|
|
<i class="fas fa-code text-3xl mb-2 text-purple-300"></i> |
|
|
<h3 class="font-bold">Dev Resources</h3> |
|
|
<p class="text-sm opacity-80">For developers</p> |
|
|
</div> |
|
|
</div> |
|
|
<div class="slide flex-shrink-0 w-64 h-40 bg-gradient-to-br from-pink-800 to-red-800 rounded-lg flex items-center justify-center"> |
|
|
<div class="text-center p-4"> |
|
|
<i class="fas fa-palette text-3xl mb-2 text-pink-300"></i> |
|
|
<h3 class="font-bold">Design Assets</h3> |
|
|
<p class="text-sm opacity-80">Beautiful creations</p> |
|
|
</div> |
|
|
</div> |
|
|
<div class="slide flex-shrink-0 w-64 h-40 bg-gradient-to-br from-red-800 to-orange-800 rounded-lg flex items-center justify-center"> |
|
|
<div class="text-center p-4"> |
|
|
<i class="fas fa-book text-3xl mb-2 text-red-300"></i> |
|
|
<h3 class="font-bold">Learning</h3> |
|
|
<p class="text-sm opacity-80">Expand your knowledge</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<main class="flex-grow py-8 px-4 md:px-8 max-w-6xl mx-auto"> |
|
|
<h2 class="text-2xl font-bold mb-8 text-center">Popular Websites</h2> |
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> |
|
|
|
|
|
<div class="glow-card bg-gray-800 rounded-xl p-6 border border-gray-700 relative overflow-hidden"> |
|
|
<div class="absolute -top-4 -right-4 w-16 h-16 bg-blue-500 rounded-full opacity-20"></div> |
|
|
<div class="flex items-center mb-4"> |
|
|
<i class="fab fa-github text-3xl mr-3 text-blue-400"></i> |
|
|
<h3 class="text-xl font-bold">GitHub</h3> |
|
|
</div> |
|
|
<p class="text-gray-400 mb-6">The world's leading software development platform for version control and collaboration.</p> |
|
|
<a href="https://github.com" target="_blank" class="visit-btn inline-block px-6 py-2 rounded-lg font-medium text-white"> |
|
|
Visit Site <i class="fas fa-external-link-alt ml-2"></i> |
|
|
</a> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="glow-card bg-gray-800 rounded-xl p-6 border border-gray-700 relative overflow-hidden"> |
|
|
<div class="absolute -top-4 -right-4 w-16 h-16 bg-purple-500 rounded-full opacity-20"></div> |
|
|
<div class="flex items-center mb-4"> |
|
|
<i class="fab fa-stack-overflow text-3xl mr-3 text-purple-400"></i> |
|
|
<h3 class="text-xl font-bold">Stack Overflow</h3> |
|
|
</div> |
|
|
<p class="text-gray-400 mb-6">A question and answer site for professional and enthusiast programmers.</p> |
|
|
<a href="https://stackoverflow.com" target="_blank" class="visit-btn inline-block px-6 py-2 rounded-lg font-medium text-white"> |
|
|
Visit Site <i class="fas fa-external-link-alt ml-2"></i> |
|
|
</a> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="glow-card bg-gray-800 rounded-xl p-6 border border-gray-700 relative overflow-hidden"> |
|
|
<div class="absolute -top-4 -right-4 w-16 h-16 bg-red-500 rounded-full opacity-20"></div> |
|
|
<div class="flex items-center mb-4"> |
|
|
<i class="fab fa-youtube text-3xl mr-3 text-red-400"></i> |
|
|
<h3 class="text-xl font-bold">YouTube</h3> |
|
|
</div> |
|
|
<p class="text-gray-400 mb-6">Enjoy the videos and music you love, upload original content, and share it all with friends.</p> |
|
|
<a href="https://youtube.com" target="_blank" class="visit-btn inline-block px-6 py-2 rounded-lg font-medium text-white"> |
|
|
Visit Site <i class="fas fa-external-link-alt ml-2"></i> |
|
|
</a> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="glow-card bg-gray-800 rounded-xl p-6 border border-gray-700 relative overflow-hidden"> |
|
|
<div class="absolute -top-4 -right-4 w-16 h-16 bg-green-500 rounded-full opacity-20"></div> |
|
|
<div class="flex items-center mb-4"> |
|
|
<i class="fab fa-medium text-3xl mr-3 text-green-400"></i> |
|
|
<h3 class="text-xl font-bold">Medium</h3> |
|
|
</div> |
|
|
<p class="text-gray-400 mb-6">A place to read, write, and interact with the stories that matter most to you.</p> |
|
|
<a href="https://medium.com" target="_blank" class="visit-btn inline-block px-6 py-2 rounded-lg font-medium text-white"> |
|
|
Visit Site <i class="fas fa-external-link-alt ml-2"></i> |
|
|
</a> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="glow-card bg-gray-800 rounded-xl p-6 border border-gray-700 relative overflow-hidden"> |
|
|
<div class="absolute -top-4 -right-4 w-16 h-16 bg-yellow-500 rounded-full opacity-20"></div> |
|
|
<div class="flex items-center mb-4"> |
|
|
<i class="fab fa-dev text-3xl mr-3 text-yellow-400"></i> |
|
|
<h3 class="text-xl font-bold">Dev.to</h3> |
|
|
</div> |
|
|
<p class="text-gray-400 mb-6">A constructive and inclusive social network for software developers.</p> |
|
|
<a href="https://dev.to" target="_blank" class="visit-btn inline-block px-6 py-2 rounded-lg font-medium text-white"> |
|
|
Visit Site <i class="fas fa-external-link-alt ml-2"></i> |
|
|
</a> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="glow-card bg-gray-800 rounded-xl p-6 border border-gray-700 relative overflow-hidden"> |
|
|
<div class="absolute -top-4 -right-4 w-16 h-16 bg-pink-500 rounded-full opacity-20"></div> |
|
|
<div class="flex items-center mb-4"> |
|
|
<i class="fab fa-dribbble text-3xl mr-3 text-pink-400"></i> |
|
|
<h3 class="text-xl font-bold">Dribbble</h3> |
|
|
</div> |
|
|
<p class="text-gray-400 mb-6">Discover the world's top designers & creatives. Share your work and get inspired.</p> |
|
|
<a href="https://dribbble.com" target="_blank" class="visit-btn inline-block px-6 py-2 rounded-lg font-medium text-white"> |
|
|
Visit Site <i class="fas fa-external-link-alt ml-2"></i> |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
</main> |
|
|
|
|
|
|
|
|
<footer class="bg-gray-800 py-8 px-4 md:px-8 border-t border-gray-700"> |
|
|
<div class="max-w-6xl mx-auto"> |
|
|
<div class="flex flex-col md:flex-row justify-between items-center"> |
|
|
<div class="mb-4 md:mb-0"> |
|
|
<h2 class="text-xl font-bold mb-2">Luminous Web Portal</h2> |
|
|
<p class="text-gray-400">Your gateway to the best web resources</p> |
|
|
</div> |
|
|
<div class="flex space-x-6"> |
|
|
<a href="#" class="text-gray-400 hover:text-blue-400 transition"> |
|
|
<i class="fab fa-twitter text-xl"></i> |
|
|
</a> |
|
|
<a href="#" class="text-gray-400 hover:text-pink-400 transition"> |
|
|
<i class="fab fa-instagram text-xl"></i> |
|
|
</a> |
|
|
<a href="#" class="text-gray-400 hover:text-blue-500 transition"> |
|
|
<i class="fab fa-facebook text-xl"></i> |
|
|
</a> |
|
|
<a href="#" class="text-gray-400 hover:text-red-500 transition"> |
|
|
<i class="fab fa-youtube text-xl"></i> |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
<div class="border-t border-gray-700 mt-6 pt-6 text-center text-gray-500 text-sm"> |
|
|
<p>© 2023 Luminous Web Portal. All rights reserved.</p> |
|
|
</div> |
|
|
</div> |
|
|
</footer> |
|
|
|
|
|
<script> |
|
|
|
|
|
document.addEventListener('DOMContentLoaded', function() { |
|
|
const slider = document.querySelector('.slider'); |
|
|
let isDown = false; |
|
|
let startX; |
|
|
let scrollLeft; |
|
|
|
|
|
slider.addEventListener('mousedown', (e) => { |
|
|
isDown = true; |
|
|
slider.style.cursor = 'grabbing'; |
|
|
startX = e.pageX - slider.offsetLeft; |
|
|
scrollLeft = slider.scrollLeft; |
|
|
}); |
|
|
|
|
|
slider.addEventListener('mouseleave', () => { |
|
|
isDown = false; |
|
|
slider.style.cursor = 'grab'; |
|
|
}); |
|
|
|
|
|
slider.addEventListener('mouseup', () => { |
|
|
isDown = false; |
|
|
slider.style.cursor = 'grab'; |
|
|
}); |
|
|
|
|
|
slider.addEventListener('mousemove', (e) => { |
|
|
if(!isDown) return; |
|
|
e.preventDefault(); |
|
|
const x = e.pageX - slider.offsetLeft; |
|
|
const walk = (x - startX) * 2; |
|
|
slider.scrollLeft = scrollLeft - walk; |
|
|
}); |
|
|
|
|
|
|
|
|
let scrollAmount = 0; |
|
|
const slideTimer = setInterval(() => { |
|
|
slider.scrollLeft += 1; |
|
|
scrollAmount += 1; |
|
|
|
|
|
if(scrollAmount >= slider.scrollWidth / 2) { |
|
|
slider.scrollLeft = 0; |
|
|
scrollAmount = 0; |
|
|
} |
|
|
}, 30); |
|
|
|
|
|
|
|
|
slider.addEventListener('mouseenter', () => { |
|
|
clearInterval(slideTimer); |
|
|
}); |
|
|
|
|
|
slider.addEventListener('mouseleave', () => { |
|
|
scrollAmount = slider.scrollLeft; |
|
|
setInterval(() => { |
|
|
slider.scrollLeft += 1; |
|
|
scrollAmount += 1; |
|
|
|
|
|
if(scrollAmount >= slider.scrollWidth / 2) { |
|
|
slider.scrollLeft = 0; |
|
|
scrollAmount = 0; |
|
|
} |
|
|
}, 30); |
|
|
}); |
|
|
}); |
|
|
</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=agentpx/luminous" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
|
</html> |