File size: 21,585 Bytes
c2c850a |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NeonTweet - Twitter Style WebApp</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>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
body {
font-family: 'Orbitron', sans-serif;
background-color: #0a0a0a;
color: #e0e0e0;
}
.neon-green {
color: #00ff9d;
text-shadow: 0 0 5px #00ff9d, 0 0 10px #00ff9d;
}
.neon-blue {
color: #00e1ff;
text-shadow: 0 0 5px #00e1ff, 0 0 10px #00e1ff;
}
.neon-border-green {
border: 1px solid #00ff9d;
box-shadow: 0 0 10px #00ff9d, inset 0 0 10px #00ff9d;
}
.neon-border-blue {
border: 1px solid #00e1ff;
box-shadow: 0 0 10px #00e1ff, inset 0 0 10px #00e1ff;
}
.neon-bg-green {
background-color: rgba(0, 255, 157, 0.1);
}
.neon-bg-blue {
background-color: rgba(0, 225, 255, 0.1);
}
.neon-btn-green {
background-color: rgba(0, 255, 157, 0.2);
border: 1px solid #00ff9d;
color: #00ff9d;
transition: all 0.3s;
}
.neon-btn-green:hover {
background-color: rgba(0, 255, 157, 0.4);
box-shadow: 0 0 15px #00ff9d;
}
.neon-btn-blue {
background-color: rgba(0, 225, 255, 0.2);
border: 1px solid #00e1ff;
color: #00e1ff;
transition: all 0.3s;
}
.neon-btn-blue:hover {
background-color: rgba(0, 225, 255, 0.4);
box-shadow: 0 0 15px #00e1ff;
}
.neon-textarea {
background-color: rgba(20, 20, 20, 0.8);
border: 1px solid #00e1ff;
color: #e0e0e0;
transition: all 0.3s;
}
.neon-textarea:focus {
outline: none;
box-shadow: 0 0 10px #00e1ff;
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
opacity: 0.7;
}
50% {
opacity: 1;
}
100% {
opacity: 0.7;
}
}
.glow {
animation: glow 3s infinite alternate;
}
@keyframes glow {
from {
text-shadow: 0 0 5px #00ff9d, 0 0 10px #00ff9d;
}
to {
text-shadow: 0 0 10px #00ff9d, 0 0 20px #00ff9d, 0 0 30px #00ff9d;
}
}
</style>
</head>
<body class="min-h-screen">
<div class="container mx-auto max-w-6xl">
<!-- Header -->
<header class="flex justify-between items-center p-4 neon-border-green rounded-lg mt-4 neon-bg-green">
<div class="flex items-center space-x-2">
<i class="fas fa-bolt neon-blue text-2xl"></i>
<h1 class="text-2xl font-bold neon-green glow">NeonTweet</h1>
</div>
<div class="flex items-center space-x-4">
<button class="px-4 py-2 rounded-full neon-btn-green">
<i class="fas fa-home mr-2"></i> Home
</button>
<button class="px-4 py-2 rounded-full neon-btn-blue">
<i class="fas fa-user mr-2"></i> Profile
</button>
<div class="relative">
<img src="https://via.placeholder.com/40" alt="Profile" class="w-10 h-10 rounded-full neon-border-blue cursor-pointer">
<div class="absolute -top-1 -right-1 w-3 h-3 bg-green-500 rounded-full pulse"></div>
</div>
</div>
</header>
<!-- Main Content -->
<div class="flex mt-6 space-x-6">
<!-- Left Sidebar -->
<div class="w-1/4 neon-bg-blue neon-border-blue rounded-lg p-4 h-fit">
<div class="flex items-center space-x-3 mb-6">
<img src="https://via.placeholder.com/60" alt="Profile" class="w-12 h-12 rounded-full neon-border-green">
<div>
<h3 class="font-bold neon-green">NeonUser</h3>
<p class="text-xs text-gray-400">@neonuser</p>
</div>
</div>
<div class="space-y-4">
<div class="flex items-center space-x-3 neon-btn-blue p-2 rounded-lg cursor-pointer">
<i class="fas fa-hashtag"></i>
<span>Explore</span>
</div>
<div class="flex items-center space-x-3 neon-btn-green p-2 rounded-lg cursor-pointer">
<i class="fas fa-bell"></i>
<span>Notifications</span>
</div>
<div class="flex items-center space-x-3 neon-btn-blue p-2 rounded-lg cursor-pointer">
<i class="fas fa-envelope"></i>
<span>Messages</span>
</div>
<div class="flex items-center space-x-3 neon-btn-green p-2 rounded-lg cursor-pointer">
<i class="fas fa-bookmark"></i>
<span>Bookmarks</span>
</div>
<div class="flex items-center space-x-3 neon-btn-blue p-2 rounded-lg cursor-pointer">
<i class="fas fa-list"></i>
<span>Lists</span>
</div>
</div>
<button class="w-full mt-6 py-2 rounded-full neon-btn-green font-bold">
<i class="fas fa-feather-alt mr-2"></i> Tweet
</button>
</div>
<!-- Middle Feed -->
<div class="w-2/4 space-y-4">
<!-- Tweet Composer -->
<div class="neon-border-blue rounded-lg p-4 neon-bg-blue">
<div class="flex space-x-3">
<img src="https://via.placeholder.com/50" alt="Profile" class="w-12 h-12 rounded-full neon-border-green">
<textarea class="w-full neon-textarea rounded-lg p-3 resize-none" placeholder="What's happening in the neon world?"></textarea>
</div>
<div class="flex justify-between items-center mt-4">
<div class="flex space-x-4">
<i class="fas fa-image neon-blue cursor-pointer hover:text-green-400"></i>
<i class="fas fa-poll neon-blue cursor-pointer hover:text-green-400"></i>
<i class="fas fa-smile neon-blue cursor-pointer hover:text-green-400"></i>
<i class="fas fa-calendar-alt neon-blue cursor-pointer hover:text-green-400"></i>
</div>
<button class="px-4 py-2 rounded-full neon-btn-green font-bold">
Tweet
</button>
</div>
</div>
<!-- Tweets Feed -->
<div class="space-y-4">
<!-- Tweet 1 -->
<div class="neon-border-green rounded-lg p-4 neon-bg-green">
<div class="flex space-x-3">
<img src="https://via.placeholder.com/50" alt="Profile" class="w-12 h-12 rounded-full neon-border-blue">
<div class="flex-1">
<div class="flex items-center space-x-2">
<span class="font-bold neon-blue">CyberPunk</span>
<span class="text-gray-400 text-sm">@cyberpunk</span>
<span class="text-gray-400 text-sm">路 2h</span>
</div>
<p class="mt-1">Just discovered this amazing neon cityscape. The colors are out of this world! #NeonVibes</p>
<div class="mt-3 flex justify-between text-gray-400">
<div class="flex items-center space-x-1 hover:text-green-400 cursor-pointer">
<i class="far fa-comment"></i>
<span>24</span>
</div>
<div class="flex items-center space-x-1 hover:text-green-400 cursor-pointer">
<i class="fas fa-retweet"></i>
<span>56</span>
</div>
<div class="flex items-center space-x-1 hover:text-pink-400 cursor-pointer">
<i class="far fa-heart"></i>
<span>128</span>
</div>
<div class="flex items-center space-x-1 hover:text-blue-400 cursor-pointer">
<i class="fas fa-share"></i>
</div>
</div>
</div>
</div>
</div>
<!-- Tweet 2 -->
<div class="neon-border-blue rounded-lg p-4 neon-bg-blue">
<div class="flex space-x-3">
<img src="https://via.placeholder.com/50" alt="Profile" class="w-12 h-12 rounded-full neon-border-green">
<div class="flex-1">
<div class="flex items-center space-x-2">
<span class="font-bold neon-green">TechGuru</span>
<span class="text-gray-400 text-sm">@techguru</span>
<span class="text-gray-400 text-sm">路 4h</span>
</div>
<p class="mt-1">The future of UI is here with these amazing neon designs. The contrast and glow effects create such an immersive experience!</p>
<div class="mt-3 flex justify-between text-gray-400">
<div class="flex items-center space-x-1 hover:text-green-400 cursor-pointer">
<i class="far fa-comment"></i>
<span>42</span>
</div>
<div class="flex items-center space-x-1 hover:text-green-400 cursor-pointer">
<i class="fas fa-retweet"></i>
<span>89</span>
</div>
<div class="flex items-center space-x-1 hover:text-pink-400 cursor-pointer">
<i class="far fa-heart"></i>
<span>256</span>
</div>
<div class="flex items-center space-x-1 hover:text-blue-400 cursor-pointer">
<i class="fas fa-share"></i>
</div>
</div>
</div>
</div>
</div>
<!-- Tweet 3 -->
<div class="neon-border-green rounded-lg p-4 neon-bg-green">
<div class="flex space-x-3">
<img src="https://via.placeholder.com/50" alt="Profile" class="w-12 h-12 rounded-full neon-border-blue">
<div class="flex-1">
<div class="flex items-center space-x-2">
<span class="font-bold neon-blue">DesignMaster</span>
<span class="text-gray-400 text-sm">@designmaster</span>
<span class="text-gray-400 text-sm">路 6h</span>
</div>
<p class="mt-1">Working on a new cyberpunk-inspired project. The combination of black backgrounds with neon green and blue accents is just perfect for that futuristic feel.</p>
<div class="mt-3 flex justify-between text-gray-400">
<div class="flex items-center space-x-1 hover:text-green-400 cursor-pointer">
<i class="far fa-comment"></i>
<span>18</span>
</div>
<div class="flex items-center space-x-1 hover:text-green-400 cursor-pointer">
<i class="fas fa-retweet"></i>
<span>34</span>
</div>
<div class="flex items-center space-x-1 hover:text-pink-400 cursor-pointer">
<i class="far fa-heart"></i>
<span>187</span>
</div>
<div class="flex items-center space-x-1 hover:text-blue-400 cursor-pointer">
<i class="fas fa-share"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Right Sidebar -->
<div class="w-1/4 space-y-4">
<!-- Search -->
<div class="neon-border-blue rounded-lg p-3 neon-bg-blue">
<div class="relative">
<i class="fas fa-search absolute left-3 top-3 text-gray-400"></i>
<input type="text" placeholder="Search NeonTweet" class="w-full bg-gray-900 bg-opacity-50 border border-gray-700 rounded-full py-2 pl-10 pr-4 text-white focus:outline-none focus:border-green-400">
</div>
</div>
<!-- Trends -->
<div class="neon-border-green rounded-lg p-4 neon-bg-green">
<h3 class="font-bold text-lg neon-blue mb-4">Trends for you</h3>
<div class="space-y-4">
<div class="cursor-pointer hover:bg-gray-800 p-2 rounded-lg">
<p class="text-xs text-gray-400">Technology 路 Trending</p>
<p class="font-bold neon-blue">#NeonUI</p>
<p class="text-xs text-gray-400">5,234 Tweets</p>
</div>
<div class="cursor-pointer hover:bg-gray-800 p-2 rounded-lg">
<p class="text-xs text-gray-400">Gaming 路 Trending</p>
<p class="font-bold neon-green">#Cyberpunk2077</p>
<p class="text-xs text-gray-400">12.8K Tweets</p>
</div>
<div class="cursor-pointer hover:bg-gray-800 p-2 rounded-lg">
<p class="text-xs text-gray-400">Music 路 Trending</p>
<p class="font-bold neon-blue">#Synthwave</p>
<p class="text-xs text-gray-400">8,542 Tweets</p>
</div>
<div class="cursor-pointer hover:bg-gray-800 p-2 rounded-lg">
<p class="text-xs text-gray-400">Art 路 Trending</p>
<p class="font-bold neon-green">#NeonArt</p>
<p class="text-xs text-gray-400">3,127 Tweets</p>
</div>
</div>
</div>
<!-- Who to follow -->
<div class="neon-border-blue rounded-lg p-4 neon-bg-blue">
<h3 class="font-bold text-lg neon-green mb-4">Who to follow</h3>
<div class="space-y-4">
<div class="flex items-center justify-between">
<div class="flex items-center space-x-3">
<img src="https://via.placeholder.com/40" alt="Profile" class="w-10 h-10 rounded-full neon-border-green">
<div>
<p class="font-bold neon-blue">UI Designer</p>
<p class="text-xs text-gray-400">@uidesigner</p>
</div>
</div>
<button class="px-3 py-1 text-xs rounded-full neon-btn-green">Follow</button>
</div>
<div class="flex items-center justify-between">
<div class="flex items-center space-x-3">
<img src="https://via.placeholder.com/40" alt="Profile" class="w-10 h-10 rounded-full neon-border-blue">
<div>
<p class="font-bold neon-green">Code Master</p>
<p class="text-xs text-gray-400">@codemaster</p>
</div>
</div>
<button class="px-3 py-1 text-xs rounded-full neon-btn-blue">Follow</button>
</div>
<div class="flex items-center justify-between">
<div class="flex items-center space-x-3">
<img src="https://via.placeholder.com/40" alt="Profile" class="w-10 h-10 rounded-full neon-border-green">
<div>
<p class="font-bold neon-blue">Future Tech</p>
<p class="text-xs text-gray-400">@futuretech</p>
</div>
</div>
<button class="px-3 py-1 text-xs rounded-full neon-btn-green">Follow</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Bottom Navigation (Mobile) -->
<div class="fixed bottom-0 left-0 right-0 bg-black bg-opacity-90 p-3 flex justify-around items-center md:hidden neon-border-green">
<i class="fas fa-home text-2xl neon-blue cursor-pointer"></i>
<i class="fas fa-search text-2xl neon-green cursor-pointer"></i>
<i class="fas fa-bell text-2xl neon-blue cursor-pointer"></i>
<i class="fas fa-envelope text-2xl neon-green cursor-pointer"></i>
</div>
<script>
// Simple tweet functionality
document.addEventListener('DOMContentLoaded', function() {
const tweetBtn = document.querySelector('.neon-btn-green:last-child');
const tweetTextarea = document.querySelector('.neon-textarea');
tweetBtn.addEventListener('click', function() {
const tweetContent = tweetTextarea.value.trim();
if (tweetContent) {
// In a real app, this would send to a server
alert(`Tweet posted: "${tweetContent}"`);
tweetTextarea.value = '';
} else {
alert("Please write something to tweet!");
}
});
// Add hover effects to all neon buttons
const neonBtns = document.querySelectorAll('.neon-btn-green, .neon-btn-blue');
neonBtns.forEach(btn => {
btn.addEventListener('mouseenter', function() {
this.style.transform = 'scale(1.05)';
});
btn.addEventListener('mouseleave', function() {
this.style.transform = 'scale(1)';
});
});
});
</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=dmoedbeck/neontweet" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |