|
| 1 | +--- |
| 2 | +
|
| 3 | +--- |
| 4 | + |
| 5 | +<!-- Mobile Bottom Navigation - only visible on mobile --> |
| 6 | +<nav class="md:hidden fixed bottom-0 left-0 right-0 z-50 backdrop-blur-xl bg-slate-950/95 border-t border-slate-800/50 safe-area-bottom"> |
| 7 | + <div class="grid grid-cols-5 h-16"> |
| 8 | + <a href="#" class="flex flex-col items-center justify-center gap-1 text-slate-400 hover:text-primary-400 active:text-primary-500 transition-colors"> |
| 9 | + <svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| 10 | + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6"></path> |
| 11 | + </svg> |
| 12 | + <span class="text-[10px] font-medium">Home</span> |
| 13 | + </a> |
| 14 | + |
| 15 | + <a href="#features" class="flex flex-col items-center justify-center gap-1 text-slate-400 hover:text-primary-400 active:text-primary-500 transition-colors"> |
| 16 | + <svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| 17 | + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"></path> |
| 18 | + </svg> |
| 19 | + <span class="text-[10px] font-medium">Features</span> |
| 20 | + </a> |
| 21 | + |
| 22 | + <a |
| 23 | + href="https://demo.libredb.studio" |
| 24 | + target="_blank" |
| 25 | + rel="noopener noreferrer" |
| 26 | + class="flex flex-col items-center justify-center -mt-4" |
| 27 | + > |
| 28 | + <div class="w-14 h-14 rounded-full bg-gradient-to-r from-primary-600 to-accent-600 flex items-center justify-center shadow-lg shadow-primary-600/30"> |
| 29 | + <svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| 30 | + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z"></path> |
| 31 | + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path> |
| 32 | + </svg> |
| 33 | + </div> |
| 34 | + <span class="text-[10px] font-medium text-primary-400 mt-1">Demo</span> |
| 35 | + </a> |
| 36 | + |
| 37 | + <a href="#databases" class="flex flex-col items-center justify-center gap-1 text-slate-400 hover:text-primary-400 active:text-primary-500 transition-colors"> |
| 38 | + <svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| 39 | + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 7v10c0 2.21 3.582 4 8 4s8-1.79 8-4V7M4 7c0 2.21 3.582 4 8 4s8-1.79 8-4M4 7c0-2.21 3.582-4 8-4s8 1.79 8 4"></path> |
| 40 | + </svg> |
| 41 | + <span class="text-[10px] font-medium">DBs</span> |
| 42 | + </a> |
| 43 | + |
| 44 | + <a href="#get-started" class="flex flex-col items-center justify-center gap-1 text-slate-400 hover:text-primary-400 active:text-primary-500 transition-colors"> |
| 45 | + <svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| 46 | + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253"></path> |
| 47 | + </svg> |
| 48 | + <span class="text-[10px] font-medium">Docs</span> |
| 49 | + </a> |
| 50 | + </div> |
| 51 | +</nav> |
| 52 | + |
| 53 | +<style> |
| 54 | + .safe-area-bottom { |
| 55 | + padding-bottom: env(safe-area-inset-bottom); |
| 56 | + } |
| 57 | +</style> |
0 commit comments