Spaces:
Running
Running
Commit
·
20b3de1
1
Parent(s):
07e7f0a
עדכון צבעים header ו footer
Browse files- index.html +39 -31
index.html
CHANGED
@@ -185,7 +185,7 @@ https://chatgpt.com/c/67efa5ae-ab80-8005-a7d4-de3ced6ccec4
|
|
185 |
</head>
|
186 |
<body class="min-h-screen">
|
187 |
<!-- Header -->
|
188 |
-
<header class="bg-white shadow-
|
189 |
<div class="container mx-auto px-4 py-4">
|
190 |
<div class="flex justify-between items-center">
|
191 |
<div class="flex items-center">
|
@@ -202,29 +202,33 @@ https://chatgpt.com/c/67efa5ae-ab80-8005-a7d4-de3ced6ccec4
|
|
202 |
|
203 |
<div class="hidden md:flex items-center space-x-4 space-x-reverse">
|
204 |
<!-- /* --- Refresh Button - Still useful for resetting filters/sort --- */ -->
|
205 |
-
<button id="refreshBtn" class="px-
|
206 |
-
|
207 |
-
|
|
|
208 |
|
209 |
<!-- /* --- Admin Edit Button - Uncomment if needed --- */ -->
|
210 |
-
<button id="editJsonBtn" class="px-
|
211 |
-
|
212 |
-
|
213 |
-
|
|
|
214 |
</div>
|
215 |
</div>
|
216 |
|
217 |
<!-- /* --- Mobile menu --- */ -->
|
218 |
<div id="mobileMenu" class="mobile-menu md:hidden mt-4">
|
219 |
<div class="flex flex-col space-y-2 py-2">
|
220 |
-
<button id="
|
221 |
-
|
222 |
-
|
|
|
223 |
<!-- /* --- Admin Edit Button (Mobile) - Uncomment if needed --- */ -->
|
224 |
-
<button id="
|
225 |
-
|
226 |
-
|
227 |
-
|
|
|
228 |
</div>
|
229 |
</div>
|
230 |
</div>
|
@@ -401,20 +405,24 @@ https://chatgpt.com/c/67efa5ae-ab80-8005-a7d4-de3ced6ccec4
|
|
401 |
</div>
|
402 |
|
403 |
<!-- /* --- Footer --- */ -->
|
404 |
-
<footer class="bg-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
</
|
|
|
|
|
|
|
|
|
418 |
|
419 |
<!-- /* --- Load Tailwind CSS via CDN --- */ -->
|
420 |
<script src="https://cdn.tailwindcss.com"></script>
|
@@ -745,11 +753,11 @@ https://chatgpt.com/c/67efa5ae-ab80-8005-a7d4-de3ced6ccec4
|
|
745 |
mobileMenu.classList.toggle('open');
|
746 |
});
|
747 |
|
748 |
-
|
749 |
-
|
750 |
// Uncomment if using admin buttons
|
751 |
const editJsonBtn = document.getElementById('editJsonBtn');
|
752 |
const editJsonBtnMobile = document.getElementById('editJsonBtnMobile');
|
|
|
|
|
753 |
if (editJsonBtn) editJsonBtn.addEventListener('click', openEditorHandler);
|
754 |
if (editJsonBtnMobile) editJsonBtnMobile.addEventListener('click', openEditorHandler);
|
755 |
|
|
|
185 |
</head>
|
186 |
<body class="min-h-screen">
|
187 |
<!-- Header -->
|
188 |
+
<header class="sticky top-0 z-50 backdrop-blur-md bg-white/80 shadow-md border-b border-gray-200">
|
189 |
<div class="container mx-auto px-4 py-4">
|
190 |
<div class="flex justify-between items-center">
|
191 |
<div class="flex items-center">
|
|
|
202 |
|
203 |
<div class="hidden md:flex items-center space-x-4 space-x-reverse">
|
204 |
<!-- /* --- Refresh Button - Still useful for resetting filters/sort --- */ -->
|
205 |
+
<button id="refreshBtn" class="px-5 py-2 rounded-xl bg-gradient-to-l from-blue-600 to-indigo-500 text-white shadow-md hover:shadow-lg hover:from-blue-700 hover:to-indigo-600 transition-all duration-300">
|
206 |
+
<i class="fas fa-sync-alt ml-2"></i> אפס תצוגה
|
207 |
+
</button>
|
208 |
+
|
209 |
|
210 |
<!-- /* --- Admin Edit Button - Uncomment if needed --- */ -->
|
211 |
+
<button id="editJsonBtn" class="px-5 py-2 rounded-xl bg-gradient-to-l from-pink-500 to-purple-600 text-white shadow-md hover:shadow-lg hover:from-pink-600 hover:to-purple-700 transition-all duration-300 relative">
|
212 |
+
<i class="fas fa-edit ml-2"></i> הציעו כלי חדש
|
213 |
+
<span class="admin-badge">N</span>
|
214 |
+
</button>
|
215 |
+
|
216 |
</div>
|
217 |
</div>
|
218 |
|
219 |
<!-- /* --- Mobile menu --- */ -->
|
220 |
<div id="mobileMenu" class="mobile-menu md:hidden mt-4">
|
221 |
<div class="flex flex-col space-y-2 py-2">
|
222 |
+
<button id="refreshBtn" class="px-5 py-2 rounded-xl bg-gradient-to-l from-blue-600 to-indigo-500 text-white shadow-md hover:shadow-lg hover:from-blue-700 hover:to-indigo-600 transition-all duration-300">
|
223 |
+
<i class="fas fa-sync-alt ml-2"></i> אפס תצוגה
|
224 |
+
</button>
|
225 |
+
|
226 |
<!-- /* --- Admin Edit Button (Mobile) - Uncomment if needed --- */ -->
|
227 |
+
<button id="editJsonBtn" class="px-5 py-2 rounded-xl bg-gradient-to-l from-pink-500 to-purple-600 text-white shadow-md hover:shadow-lg hover:from-pink-600 hover:to-purple-700 transition-all duration-300 relative">
|
228 |
+
<i class="fas fa-edit ml-2"></i> הציעו כלי חדש
|
229 |
+
<span class="admin-badge">N</span>
|
230 |
+
</button>
|
231 |
+
|
232 |
</div>
|
233 |
</div>
|
234 |
</div>
|
|
|
405 |
</div>
|
406 |
|
407 |
<!-- /* --- Footer --- */ -->
|
408 |
+
<footer class="fixed bottom-0 left-0 w-full z-50 backdrop-blur-md bg-white/80 shadow-xl border-t border-gray-200">
|
409 |
+
|
410 |
+
<div class="container mx-auto px-4 py-3 text-center space-y-2">
|
411 |
+
<div class="flex justify-center gap-4">
|
412 |
+
<!-- אייקונים -->
|
413 |
+
<a href="https://chat.whatsapp.com/GPFASYBEA9CFGUMCVZ5RXP" target="_blank" class="w-9 h-9 rounded-full bg-white shadow flex items-center justify-center text-green-500 hover:bg-green-500 hover:text-white transition"><i class="fab fa-whatsapp"></i></a>
|
414 |
+
<a href="http://www.linkedin.com/in/sagi-bar-on" target="_blank" class="w-9 h-9 rounded-full bg-white shadow flex items-center justify-center text-blue-500 hover:bg-blue-700 hover:text-white transition"><i class="fab fa-linkedin-in"></i></a>
|
415 |
+
<a href="https://www.facebook.com/SAGI.BARON" target="_blank" class="w-9 h-9 rounded-full bg-white shadow flex items-center justify-center text-blue-600 hover:bg-blue-800 hover:text-white transition"><i class="fab fa-facebook-f"></i></a>
|
416 |
+
<a href="https://www.youtube.com/@SAGIBARON" target="_blank" class="w-9 h-9 rounded-full bg-white shadow flex items-center justify-center text-red-500 hover:bg-red-700 hover:text-white transition"><i class="fab fa-youtube"></i></a>
|
417 |
+
</div>
|
418 |
+
<button onclick="openSuggestModal()"
|
419 |
+
class="px-4 py-2 rounded-xl bg-gradient-to-br from-pink-500 to-purple-600 text-white font-bold shadow hover:scale-105 transition">
|
420 |
+
<i class="fas fa-pen-to-square ml-2"></i> הציעו כלי חדש
|
421 |
+
</button>
|
422 |
+
<p class="text-gray-500 text-xs">© 2025 כל הזכויות שמורות לשגיא בר און</p>
|
423 |
+
</div>
|
424 |
+
</footer>
|
425 |
+
|
426 |
|
427 |
<!-- /* --- Load Tailwind CSS via CDN --- */ -->
|
428 |
<script src="https://cdn.tailwindcss.com"></script>
|
|
|
753 |
mobileMenu.classList.toggle('open');
|
754 |
});
|
755 |
|
|
|
|
|
756 |
// Uncomment if using admin buttons
|
757 |
const editJsonBtn = document.getElementById('editJsonBtn');
|
758 |
const editJsonBtnMobile = document.getElementById('editJsonBtnMobile');
|
759 |
+
document.getElementById('editJsonBtnFooter')?.addEventListener('click', openEditorHandler);
|
760 |
+
|
761 |
if (editJsonBtn) editJsonBtn.addEventListener('click', openEditorHandler);
|
762 |
if (editJsonBtnMobile) editJsonBtnMobile.addEventListener('click', openEditorHandler);
|
763 |
|