File size: 14,163 Bytes
b5c7560 |
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 |
<!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;
}
/* Custom scrollbar */
::-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/Banner -->
<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>
<!-- Slider -->
<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 Content - Cards -->
<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">
<!-- Card 1 -->
<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>
<!-- Card 2 -->
<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>
<!-- Card 3 -->
<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>
<!-- Card 4 -->
<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>
<!-- Card 5 -->
<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>
<!-- Card 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-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 -->
<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>
// Simple slider functionality
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;
});
// Auto-scroll slider
let scrollAmount = 0;
const slideTimer = setInterval(() => {
slider.scrollLeft += 1;
scrollAmount += 1;
if(scrollAmount >= slider.scrollWidth / 2) {
slider.scrollLeft = 0;
scrollAmount = 0;
}
}, 30);
// Pause auto-scroll on hover
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> |