Better make that aura better much better shouldn’t be a border daring you know
Browse files- index.html +28 -15
index.html
CHANGED
|
@@ -65,13 +65,13 @@
|
|
| 65 |
</div>
|
| 66 |
<!-- New Chat Button -->
|
| 67 |
<div class="mx-4 mb-6 mt-[70px]">
|
| 68 |
-
<button class="flex items-center gap-2">
|
| 69 |
-
<div class="w-[30px] h-[30px] rounded-full bg-[#FF6B3A] flex items-center justify-center">
|
| 70 |
<i data-feather="plus" class="w-3.5 h-3.5 stroke-white stroke-[2.5px]"></i>
|
| 71 |
</div>
|
| 72 |
-
<span class="text-[13px] font-medium text-[#F5F5F5]">New chat</span>
|
| 73 |
</button>
|
| 74 |
-
|
| 75 |
<!-- Enhanced Navigation -->
|
| 76 |
<nav class="px-4 space-y-3">
|
| 77 |
<div class="border-t border-dark-700 my-2"></div>
|
|
@@ -138,7 +138,7 @@
|
|
| 138 |
|
| 139 |
<!-- Input Box -->
|
| 140 |
<div class="w-full max-w-2xl">
|
| 141 |
-
<div class="bg-dark-700 rounded-xl p-1.5 shadow-lg
|
| 142 |
<div class="relative">
|
| 143 |
<p class="text-sm text-gray-400 px-4 pt-3 pb-1">How can I help you today?</p>
|
| 144 |
<div class="absolute left-4 bottom-3 flex items-center space-x-3">
|
|
@@ -162,10 +162,10 @@
|
|
| 162 |
<span class="text-sm text-gray-400">Sonnet 4.5</span>
|
| 163 |
<i data-feather="chevron-down" class="w-4 h-4 stroke-gray-400 ml-1"></i>
|
| 164 |
</div>
|
| 165 |
-
<button class="w-8 h-8 rounded-lg bg-accent-500 flex items-center justify-center hover:
|
| 166 |
-
<i data-feather="arrow-up" class="w-4 h-4 stroke-white"></i>
|
| 167 |
</button>
|
| 168 |
-
|
| 169 |
</div>
|
| 170 |
</div>
|
| 171 |
<p class="text-xs text-gray-500 mt-2 text-center">Upgrade to connect your tools to Claude</p>
|
|
@@ -199,21 +199,34 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
| 199 |
anime({
|
| 200 |
targets: star,
|
| 201 |
rotate: [0, 360],
|
| 202 |
-
|
|
|
|
| 203 |
loop: true,
|
| 204 |
-
easing: '
|
| 205 |
});
|
| 206 |
-
|
| 207 |
-
// Subtle pulse for the input box
|
| 208 |
anime({
|
| 209 |
targets: 'input',
|
| 210 |
-
boxShadow: [
|
| 211 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 212 |
loop: true,
|
| 213 |
direction: 'alternate',
|
| 214 |
easing: 'easeInOutSine'
|
| 215 |
});
|
| 216 |
-
|
| 217 |
</script>
|
| 218 |
</body>
|
| 219 |
</html>
|
|
|
|
| 65 |
</div>
|
| 66 |
<!-- New Chat Button -->
|
| 67 |
<div class="mx-4 mb-6 mt-[70px]">
|
| 68 |
+
<button class="flex items-center gap-2 group">
|
| 69 |
+
<div class="w-[30px] h-[30px] rounded-full bg-gradient-to-br from-[#FF6B3A] to-[#FF8D5C] flex items-center justify-center shadow-[0_0_15px_-3px_rgba(255,107,58,0.4)] group-hover:shadow-[0_0_20px_-2px_rgba(255,107,58,0.6)] transition-all duration-300">
|
| 70 |
<i data-feather="plus" class="w-3.5 h-3.5 stroke-white stroke-[2.5px]"></i>
|
| 71 |
</div>
|
| 72 |
+
<span class="text-[13px] font-medium text-[#F5F5F5] group-hover:text-white transition-colors">New chat</span>
|
| 73 |
</button>
|
| 74 |
+
</div>
|
| 75 |
<!-- Enhanced Navigation -->
|
| 76 |
<nav class="px-4 space-y-3">
|
| 77 |
<div class="border-t border-dark-700 my-2"></div>
|
|
|
|
| 138 |
|
| 139 |
<!-- Input Box -->
|
| 140 |
<div class="w-full max-w-2xl">
|
| 141 |
+
<div class="bg-dark-700 rounded-xl p-1.5 shadow-lg shadow-accent-500/10 hover:shadow-accent-500/20 transition-all duration-300 backdrop-blur-sm">
|
| 142 |
<div class="relative">
|
| 143 |
<p class="text-sm text-gray-400 px-4 pt-3 pb-1">How can I help you today?</p>
|
| 144 |
<div class="absolute left-4 bottom-3 flex items-center space-x-3">
|
|
|
|
| 162 |
<span class="text-sm text-gray-400">Sonnet 4.5</span>
|
| 163 |
<i data-feather="chevron-down" class="w-4 h-4 stroke-gray-400 ml-1"></i>
|
| 164 |
</div>
|
| 165 |
+
<button class="w-8 h-8 rounded-lg bg-gradient-to-br from-accent-500 to-accent-600 flex items-center justify-center hover:from-accent-600 hover:to-accent-500 transform hover:scale-105 transition-all duration-200 group">
|
| 166 |
+
<i data-feather="arrow-up" class="w-4 h-4 stroke-white group-hover:rotate-45 transition-transform"></i>
|
| 167 |
</button>
|
| 168 |
+
</div>
|
| 169 |
</div>
|
| 170 |
</div>
|
| 171 |
<p class="text-xs text-gray-500 mt-2 text-center">Upgrade to connect your tools to Claude</p>
|
|
|
|
| 199 |
anime({
|
| 200 |
targets: star,
|
| 201 |
rotate: [0, 360],
|
| 202 |
+
scale: [1, 1.2, 1],
|
| 203 |
+
duration: 6000,
|
| 204 |
loop: true,
|
| 205 |
+
easing: 'easeInOutSine'
|
| 206 |
});
|
| 207 |
+
// Subtle pulse for the input box
|
|
|
|
| 208 |
anime({
|
| 209 |
targets: 'input',
|
| 210 |
+
boxShadow: [
|
| 211 |
+
'0 0 0 0 rgba(255,87,34,0)',
|
| 212 |
+
'0 0 10px 2px rgba(255,107,58,0.15)',
|
| 213 |
+
'0 0 0 0 rgba(255,87,34,0)'
|
| 214 |
+
],
|
| 215 |
+
duration: 4000,
|
| 216 |
+
loop: true,
|
| 217 |
+
easing: 'easeInOutSine'
|
| 218 |
+
});
|
| 219 |
+
|
| 220 |
+
// Add subtle glow to sidebar
|
| 221 |
+
anime({
|
| 222 |
+
targets: '#sidebar',
|
| 223 |
+
boxShadow: ['0 0 0 0 rgba(255,107,58,0)', '-5px 0 15px -5px rgba(255,107,58,0.08)'],
|
| 224 |
+
duration: 2000,
|
| 225 |
loop: true,
|
| 226 |
direction: 'alternate',
|
| 227 |
easing: 'easeInOutSine'
|
| 228 |
});
|
| 229 |
+
});
|
| 230 |
</script>
|
| 231 |
</body>
|
| 232 |
</html>
|