|
| 1 | +<script setup> |
| 2 | +import Card from '../components/Card.vue'; |
| 3 | +</script> |
| 4 | + |
| 5 | +<template> |
| 6 | + <Card class="relative items-center justify-center text-center mt-10 w-3/4 max-w-4xl mx-auto p-20 min-h-80"> |
| 7 | + <!-- corner outlines (L-shaped) --> |
| 8 | + <div class="absolute top-3 left-3 w-8 h-8 border-t-4 border-l-4 border-gray-300 rounded-tl-md pointer-events-none" aria-hidden="true"></div> |
| 9 | + <div class="absolute top-3 right-3 w-8 h-8 border-t-4 border-r-4 border-gray-300 rounded-tr-md pointer-events-none" aria-hidden="true"></div> |
| 10 | + <div class="absolute bottom-3 left-3 w-8 h-8 border-b-4 border-l-4 border-gray-300 rounded-bl-md pointer-events-none" aria-hidden="true"></div> |
| 11 | + <div class="absolute bottom-3 right-3 w-8 h-8 border-b-4 border-r-4 border-gray-300 rounded-br-md pointer-events-none" aria-hidden="true"></div> |
| 12 | + |
| 13 | + <!-- plus inside rounded square --> |
| 14 | + <div class="mb-4 mt-16"> |
| 15 | + <span class="inline-flex items-center justify-center w-14 h-14 rounded-lg bg-white text-black border-2 border-black"> |
| 16 | + <span class="pi pi-plus text-2xl" aria-hidden="true"></span> |
| 17 | + </span> |
| 18 | + </div> |
| 19 | + |
| 20 | + <h3 class="text-xl font-medium mb-1">Drag files here to install them on your board</h3> |
| 21 | + <p class="mb-5">Or click here to browse</p> |
| 22 | + </Card> |
| 23 | + |
| 24 | + <Card class="w-3/4 max-w-4xl mx-auto mt-6 p-4"> |
| 25 | + <div class="flex items-center justify-between"> |
| 26 | + <span class="text-lg font-medium">App2.tbf</span> |
| 27 | + <button class="text-gray-600 hover:text-red-600" aria-label="Remove App2.tbf"> |
| 28 | + <span class="pi pi-times text-xl" aria-hidden="true"></span> |
| 29 | + </button> |
| 30 | + </div> |
| 31 | + </Card> |
| 32 | + <Card class="w-3/4 max-w-4xl mx-auto mt-6 p-4"> |
| 33 | + <div class="flex items-center justify-between"> |
| 34 | + <span class="text-lg font-medium">App2.tbf</span> |
| 35 | + <button class="text-gray-600 hover:text-red-600" aria-label="Remove App2.tbf"> |
| 36 | + <span class="pi pi-times text-xl" aria-hidden="true"></span> |
| 37 | + </button> |
| 38 | + </div> |
| 39 | + </Card> |
| 40 | + <Card class="w-3/4 max-w-4xl mx-auto mt-6 p-4"> |
| 41 | + <div class="flex items-center justify-between"> |
| 42 | + <span class="text-lg font-medium">App2.tbf</span> |
| 43 | + <button class="text-gray-600 hover:text-red-600" aria-label="Remove App2.tbf"> |
| 44 | + <span class="pi pi-times text-xl" aria-hidden="true"></span> |
| 45 | + </button> |
| 46 | + </div> |
| 47 | + </Card> |
| 48 | + |
| 49 | + <!-- Install button fixed at bottom center --> |
| 50 | + <RouterLink to="/device-manager"> |
| 51 | + <div class="fixed inset-x-0 bottom-6 flex justify-center pointer-events-none"> |
| 52 | + <button class="pointer-events-auto bg-[#84A1C4] hover:bg-[#6B8DA4] text-white py-2 px-12 rounded-full shadow-lg min-w-[180px]" aria-label="Install selected apps"> |
| 53 | + Install |
| 54 | + </button> |
| 55 | + </div> |
| 56 | + </RouterLink> |
| 57 | +</template> |
| 58 | + |
0 commit comments