create-nala 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (316) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +58 -0
  3. package/dist/index.js +227 -0
  4. package/package.json +48 -0
  5. package/template/.env.example +45 -0
  6. package/template/_gitignore +33 -0
  7. package/template/components.json +24 -0
  8. package/template/index.html +30 -0
  9. package/template/package.json +51 -0
  10. package/template/public/favicon.svg +15 -0
  11. package/template/public/icons.svg +24 -0
  12. package/template/public/img/avatar.webp +0 -0
  13. package/template/public/screenshot.png +0 -0
  14. package/template/src/App.vue +15 -0
  15. package/template/src/auto-imports.d.ts +691 -0
  16. package/template/src/components/AppLogo.vue +159 -0
  17. package/template/src/components/EmptyState.vue +60 -0
  18. package/template/src/components/PageHeader.vue +60 -0
  19. package/template/src/components/layout/AppNavbar.vue +159 -0
  20. package/template/src/components/layout/AppSidebar.vue +74 -0
  21. package/template/src/components/layout/CommandSearchDialog.vue +120 -0
  22. package/template/src/components/ui/accordion/Accordion.vue +15 -0
  23. package/template/src/components/ui/accordion/AccordionContent.vue +20 -0
  24. package/template/src/components/ui/accordion/AccordionItem.vue +20 -0
  25. package/template/src/components/ui/accordion/AccordionTrigger.vue +34 -0
  26. package/template/src/components/ui/accordion/index.ts +4 -0
  27. package/template/src/components/ui/alert/Alert.vue +21 -0
  28. package/template/src/components/ui/alert/AlertDescription.vue +17 -0
  29. package/template/src/components/ui/alert/AlertTitle.vue +17 -0
  30. package/template/src/components/ui/alert/index.ts +30 -0
  31. package/template/src/components/ui/alert-dialog/AlertDialog.vue +15 -0
  32. package/template/src/components/ui/alert-dialog/AlertDialogAction.vue +18 -0
  33. package/template/src/components/ui/alert-dialog/AlertDialogCancel.vue +25 -0
  34. package/template/src/components/ui/alert-dialog/AlertDialogContent.vue +44 -0
  35. package/template/src/components/ui/alert-dialog/AlertDialogDescription.vue +23 -0
  36. package/template/src/components/ui/alert-dialog/AlertDialogFooter.vue +22 -0
  37. package/template/src/components/ui/alert-dialog/AlertDialogHeader.vue +17 -0
  38. package/template/src/components/ui/alert-dialog/AlertDialogTitle.vue +21 -0
  39. package/template/src/components/ui/alert-dialog/AlertDialogTrigger.vue +12 -0
  40. package/template/src/components/ui/alert-dialog/index.ts +9 -0
  41. package/template/src/components/ui/avatar/Avatar.vue +50 -0
  42. package/template/src/components/ui/avatar/AvatarFallback.vue +21 -0
  43. package/template/src/components/ui/avatar/AvatarGroup.vue +69 -0
  44. package/template/src/components/ui/avatar/AvatarImage.vue +16 -0
  45. package/template/src/components/ui/avatar/index.ts +4 -0
  46. package/template/src/components/ui/badge/Badge.vue +40 -0
  47. package/template/src/components/ui/badge/index.ts +45 -0
  48. package/template/src/components/ui/breadcrumb/Breadcrumb.vue +17 -0
  49. package/template/src/components/ui/breadcrumb/BreadcrumbEllipsis.vue +23 -0
  50. package/template/src/components/ui/breadcrumb/BreadcrumbItem.vue +17 -0
  51. package/template/src/components/ui/breadcrumb/BreadcrumbLink.vue +21 -0
  52. package/template/src/components/ui/breadcrumb/BreadcrumbList.vue +17 -0
  53. package/template/src/components/ui/breadcrumb/BreadcrumbPage.vue +20 -0
  54. package/template/src/components/ui/breadcrumb/BreadcrumbSeparator.vue +22 -0
  55. package/template/src/components/ui/breadcrumb/index.ts +7 -0
  56. package/template/src/components/ui/button/Button.spec.ts +46 -0
  57. package/template/src/components/ui/button/Button.vue +31 -0
  58. package/template/src/components/ui/button/index.ts +41 -0
  59. package/template/src/components/ui/calendar/Calendar.vue +106 -0
  60. package/template/src/components/ui/calendar/index.ts +1 -0
  61. package/template/src/components/ui/card/Card.vue +29 -0
  62. package/template/src/components/ui/card/CardAction.vue +17 -0
  63. package/template/src/components/ui/card/CardContent.vue +17 -0
  64. package/template/src/components/ui/card/CardDescription.vue +17 -0
  65. package/template/src/components/ui/card/CardFooter.vue +17 -0
  66. package/template/src/components/ui/card/CardHeader.vue +29 -0
  67. package/template/src/components/ui/card/CardTitle.vue +17 -0
  68. package/template/src/components/ui/card/index.ts +7 -0
  69. package/template/src/components/ui/chart/AreaChart.vue +143 -0
  70. package/template/src/components/ui/chart/BarChart.vue +142 -0
  71. package/template/src/components/ui/chart/DonutChart.vue +75 -0
  72. package/template/src/components/ui/chart/LineChart.vue +132 -0
  73. package/template/src/components/ui/chart/index.ts +4 -0
  74. package/template/src/components/ui/checkbox/Checkbox.vue +57 -0
  75. package/template/src/components/ui/checkbox/index.ts +1 -0
  76. package/template/src/components/ui/collapsible/Collapsible.vue +15 -0
  77. package/template/src/components/ui/collapsible/CollapsibleContent.vue +18 -0
  78. package/template/src/components/ui/collapsible/CollapsibleTrigger.vue +12 -0
  79. package/template/src/components/ui/collapsible/index.ts +3 -0
  80. package/template/src/components/ui/command/Command.vue +88 -0
  81. package/template/src/components/ui/command/CommandDialog.vue +31 -0
  82. package/template/src/components/ui/command/CommandEmpty.vue +27 -0
  83. package/template/src/components/ui/command/CommandGroup.vue +45 -0
  84. package/template/src/components/ui/command/CommandInput.vue +39 -0
  85. package/template/src/components/ui/command/CommandItem.vue +76 -0
  86. package/template/src/components/ui/command/CommandList.vue +25 -0
  87. package/template/src/components/ui/command/CommandSeparator.vue +21 -0
  88. package/template/src/components/ui/command/CommandShortcut.vue +17 -0
  89. package/template/src/components/ui/command/index.ts +25 -0
  90. package/template/src/components/ui/context-menu/ContextMenu.vue +15 -0
  91. package/template/src/components/ui/context-menu/ContextMenuCheckboxItem.vue +36 -0
  92. package/template/src/components/ui/context-menu/ContextMenuContent.vue +33 -0
  93. package/template/src/components/ui/context-menu/ContextMenuGroup.vue +12 -0
  94. package/template/src/components/ui/context-menu/ContextMenuItem.vue +36 -0
  95. package/template/src/components/ui/context-menu/ContextMenuLabel.vue +25 -0
  96. package/template/src/components/ui/context-menu/ContextMenuRadioGroup.vue +18 -0
  97. package/template/src/components/ui/context-menu/ContextMenuRadioItem.vue +36 -0
  98. package/template/src/components/ui/context-menu/ContextMenuSeparator.vue +18 -0
  99. package/template/src/components/ui/context-menu/ContextMenuShortcut.vue +17 -0
  100. package/template/src/components/ui/context-menu/ContextMenuSub.vue +15 -0
  101. package/template/src/components/ui/context-menu/ContextMenuSubContent.vue +36 -0
  102. package/template/src/components/ui/context-menu/ContextMenuSubTrigger.vue +32 -0
  103. package/template/src/components/ui/context-menu/ContextMenuTrigger.vue +13 -0
  104. package/template/src/components/ui/context-menu/index.ts +14 -0
  105. package/template/src/components/ui/date-picker/DatePicker.vue +233 -0
  106. package/template/src/components/ui/date-picker/index.ts +1 -0
  107. package/template/src/components/ui/dialog/Dialog.vue +19 -0
  108. package/template/src/components/ui/dialog/DialogClose.vue +15 -0
  109. package/template/src/components/ui/dialog/DialogContent.vue +53 -0
  110. package/template/src/components/ui/dialog/DialogDescription.vue +23 -0
  111. package/template/src/components/ui/dialog/DialogFooter.vue +27 -0
  112. package/template/src/components/ui/dialog/DialogHeader.vue +17 -0
  113. package/template/src/components/ui/dialog/DialogOverlay.vue +21 -0
  114. package/template/src/components/ui/dialog/DialogScrollContent.vue +59 -0
  115. package/template/src/components/ui/dialog/DialogTitle.vue +23 -0
  116. package/template/src/components/ui/dialog/DialogTrigger.vue +15 -0
  117. package/template/src/components/ui/dialog/index.ts +10 -0
  118. package/template/src/components/ui/dropdown-menu/DropdownMenu.vue +19 -0
  119. package/template/src/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue +39 -0
  120. package/template/src/components/ui/dropdown-menu/DropdownMenuContent.vue +41 -0
  121. package/template/src/components/ui/dropdown-menu/DropdownMenuGroup.vue +15 -0
  122. package/template/src/components/ui/dropdown-menu/DropdownMenuItem.vue +31 -0
  123. package/template/src/components/ui/dropdown-menu/DropdownMenuLabel.vue +23 -0
  124. package/template/src/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue +21 -0
  125. package/template/src/components/ui/dropdown-menu/DropdownMenuRadioItem.vue +40 -0
  126. package/template/src/components/ui/dropdown-menu/DropdownMenuSeparator.vue +23 -0
  127. package/template/src/components/ui/dropdown-menu/DropdownMenuShortcut.vue +17 -0
  128. package/template/src/components/ui/dropdown-menu/DropdownMenuSub.vue +18 -0
  129. package/template/src/components/ui/dropdown-menu/DropdownMenuSubContent.vue +27 -0
  130. package/template/src/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue +31 -0
  131. package/template/src/components/ui/dropdown-menu/DropdownMenuTrigger.vue +17 -0
  132. package/template/src/components/ui/dropdown-menu/index.ts +16 -0
  133. package/template/src/components/ui/form/FormControl.vue +17 -0
  134. package/template/src/components/ui/form/FormDescription.vue +21 -0
  135. package/template/src/components/ui/form/FormItem.vue +23 -0
  136. package/template/src/components/ui/form/FormLabel.vue +25 -0
  137. package/template/src/components/ui/form/FormMessage.vue +23 -0
  138. package/template/src/components/ui/form/index.ts +7 -0
  139. package/template/src/components/ui/form/injectionKeys.ts +4 -0
  140. package/template/src/components/ui/form/useFormField.ts +30 -0
  141. package/template/src/components/ui/hover-card/HoverCard.vue +19 -0
  142. package/template/src/components/ui/hover-card/HoverCardContent.vue +43 -0
  143. package/template/src/components/ui/hover-card/HoverCardTrigger.vue +15 -0
  144. package/template/src/components/ui/hover-card/index.ts +3 -0
  145. package/template/src/components/ui/index.ts +47 -0
  146. package/template/src/components/ui/input/Input.vue +33 -0
  147. package/template/src/components/ui/input/InputAddon.vue +29 -0
  148. package/template/src/components/ui/input/InputGroup.vue +17 -0
  149. package/template/src/components/ui/input/InputIcon.vue +29 -0
  150. package/template/src/components/ui/input/index.ts +4 -0
  151. package/template/src/components/ui/kbd/Kbd.vue +30 -0
  152. package/template/src/components/ui/kbd/index.ts +1 -0
  153. package/template/src/components/ui/label/Label.vue +26 -0
  154. package/template/src/components/ui/label/index.ts +1 -0
  155. package/template/src/components/ui/loading-bar/LoadingBar.vue +41 -0
  156. package/template/src/components/ui/loading-bar/index.ts +2 -0
  157. package/template/src/components/ui/pagination/Pagination.vue +26 -0
  158. package/template/src/components/ui/pagination/PaginationContent.vue +22 -0
  159. package/template/src/components/ui/pagination/PaginationEllipsis.vue +25 -0
  160. package/template/src/components/ui/pagination/PaginationFirst.vue +33 -0
  161. package/template/src/components/ui/pagination/PaginationItem.vue +34 -0
  162. package/template/src/components/ui/pagination/PaginationLast.vue +33 -0
  163. package/template/src/components/ui/pagination/PaginationNext.vue +33 -0
  164. package/template/src/components/ui/pagination/PaginationPrevious.vue +33 -0
  165. package/template/src/components/ui/pagination/index.ts +8 -0
  166. package/template/src/components/ui/pin-input/PinInput.vue +28 -0
  167. package/template/src/components/ui/pin-input/PinInputGroup.vue +18 -0
  168. package/template/src/components/ui/pin-input/PinInputInput.vue +24 -0
  169. package/template/src/components/ui/pin-input/PinInputSeparator.vue +21 -0
  170. package/template/src/components/ui/pin-input/index.ts +4 -0
  171. package/template/src/components/ui/popover/Popover.vue +19 -0
  172. package/template/src/components/ui/popover/PopoverAnchor.vue +15 -0
  173. package/template/src/components/ui/popover/PopoverContent.vue +45 -0
  174. package/template/src/components/ui/popover/PopoverTrigger.vue +15 -0
  175. package/template/src/components/ui/popover/index.ts +4 -0
  176. package/template/src/components/ui/progress/Progress.vue +35 -0
  177. package/template/src/components/ui/progress/index.ts +1 -0
  178. package/template/src/components/ui/radio-group/RadioGroup.vue +23 -0
  179. package/template/src/components/ui/radio-group/RadioGroupItem.vue +30 -0
  180. package/template/src/components/ui/radio-group/index.ts +2 -0
  181. package/template/src/components/ui/scroll-area/ScrollArea.vue +40 -0
  182. package/template/src/components/ui/scroll-area/ScrollBar.vue +44 -0
  183. package/template/src/components/ui/scroll-area/index.ts +2 -0
  184. package/template/src/components/ui/select/Select.vue +19 -0
  185. package/template/src/components/ui/select/SelectContent.vue +51 -0
  186. package/template/src/components/ui/select/SelectGroup.vue +15 -0
  187. package/template/src/components/ui/select/SelectItem.vue +44 -0
  188. package/template/src/components/ui/select/SelectItemText.vue +15 -0
  189. package/template/src/components/ui/select/SelectLabel.vue +17 -0
  190. package/template/src/components/ui/select/SelectScrollDownButton.vue +26 -0
  191. package/template/src/components/ui/select/SelectScrollUpButton.vue +26 -0
  192. package/template/src/components/ui/select/SelectSeparator.vue +19 -0
  193. package/template/src/components/ui/select/SelectTrigger.vue +33 -0
  194. package/template/src/components/ui/select/SelectValue.vue +15 -0
  195. package/template/src/components/ui/select/index.ts +11 -0
  196. package/template/src/components/ui/separator/Separator.vue +29 -0
  197. package/template/src/components/ui/separator/index.ts +1 -0
  198. package/template/src/components/ui/sheet/Sheet.vue +19 -0
  199. package/template/src/components/ui/sheet/SheetClose.vue +15 -0
  200. package/template/src/components/ui/sheet/SheetContent.vue +62 -0
  201. package/template/src/components/ui/sheet/SheetDescription.vue +21 -0
  202. package/template/src/components/ui/sheet/SheetFooter.vue +16 -0
  203. package/template/src/components/ui/sheet/SheetHeader.vue +15 -0
  204. package/template/src/components/ui/sheet/SheetOverlay.vue +21 -0
  205. package/template/src/components/ui/sheet/SheetTitle.vue +21 -0
  206. package/template/src/components/ui/sheet/SheetTrigger.vue +15 -0
  207. package/template/src/components/ui/sheet/index.ts +8 -0
  208. package/template/src/components/ui/sidebar/Sidebar.vue +113 -0
  209. package/template/src/components/ui/sidebar/SidebarContent.vue +18 -0
  210. package/template/src/components/ui/sidebar/SidebarControl.vue +53 -0
  211. package/template/src/components/ui/sidebar/SidebarFooter.vue +18 -0
  212. package/template/src/components/ui/sidebar/SidebarGroup.vue +18 -0
  213. package/template/src/components/ui/sidebar/SidebarGroupAction.vue +27 -0
  214. package/template/src/components/ui/sidebar/SidebarGroupContent.vue +18 -0
  215. package/template/src/components/ui/sidebar/SidebarGroupLabel.vue +25 -0
  216. package/template/src/components/ui/sidebar/SidebarHeader.vue +18 -0
  217. package/template/src/components/ui/sidebar/SidebarInput.vue +22 -0
  218. package/template/src/components/ui/sidebar/SidebarInset.vue +21 -0
  219. package/template/src/components/ui/sidebar/SidebarMenu.vue +18 -0
  220. package/template/src/components/ui/sidebar/SidebarMenuAction.vue +35 -0
  221. package/template/src/components/ui/sidebar/SidebarMenuBadge.vue +26 -0
  222. package/template/src/components/ui/sidebar/SidebarMenuButton.vue +48 -0
  223. package/template/src/components/ui/sidebar/SidebarMenuButtonChild.vue +36 -0
  224. package/template/src/components/ui/sidebar/SidebarMenuItem.vue +18 -0
  225. package/template/src/components/ui/sidebar/SidebarMenuSkeleton.vue +35 -0
  226. package/template/src/components/ui/sidebar/SidebarMenuSub.vue +22 -0
  227. package/template/src/components/ui/sidebar/SidebarMenuSubButton.vue +36 -0
  228. package/template/src/components/ui/sidebar/SidebarMenuSubItem.vue +18 -0
  229. package/template/src/components/ui/sidebar/SidebarProvider.vue +136 -0
  230. package/template/src/components/ui/sidebar/SidebarRail.vue +33 -0
  231. package/template/src/components/ui/sidebar/SidebarSeparator.vue +19 -0
  232. package/template/src/components/ui/sidebar/SidebarTrigger.vue +27 -0
  233. package/template/src/components/ui/sidebar/index.ts +61 -0
  234. package/template/src/components/ui/sidebar/utils.ts +27 -0
  235. package/template/src/components/ui/skeleton/Skeleton.vue +17 -0
  236. package/template/src/components/ui/skeleton/index.ts +1 -0
  237. package/template/src/components/ui/slider/Slider.vue +42 -0
  238. package/template/src/components/ui/slider/index.ts +1 -0
  239. package/template/src/components/ui/sonner/Sonner.vue +42 -0
  240. package/template/src/components/ui/sonner/index.ts +2 -0
  241. package/template/src/components/ui/stepper/Stepper.vue +102 -0
  242. package/template/src/components/ui/stepper/index.ts +1 -0
  243. package/template/src/components/ui/switch/Switch.vue +38 -0
  244. package/template/src/components/ui/switch/index.ts +1 -0
  245. package/template/src/components/ui/table/Table.vue +16 -0
  246. package/template/src/components/ui/table/TableBody.vue +17 -0
  247. package/template/src/components/ui/table/TableCaption.vue +17 -0
  248. package/template/src/components/ui/table/TableCell.vue +22 -0
  249. package/template/src/components/ui/table/TableEmpty.vue +34 -0
  250. package/template/src/components/ui/table/TableFooter.vue +17 -0
  251. package/template/src/components/ui/table/TableHead.vue +17 -0
  252. package/template/src/components/ui/table/TableHeader.vue +17 -0
  253. package/template/src/components/ui/table/TableRow.vue +17 -0
  254. package/template/src/components/ui/table/index.ts +9 -0
  255. package/template/src/components/ui/table/utils.ts +10 -0
  256. package/template/src/components/ui/tabs/Tabs.vue +24 -0
  257. package/template/src/components/ui/tabs/TabsContent.vue +21 -0
  258. package/template/src/components/ui/tabs/TabsList.vue +24 -0
  259. package/template/src/components/ui/tabs/TabsTrigger.vue +26 -0
  260. package/template/src/components/ui/tabs/index.ts +4 -0
  261. package/template/src/components/ui/textarea/Textarea.vue +28 -0
  262. package/template/src/components/ui/textarea/index.ts +1 -0
  263. package/template/src/components/ui/timeline/Timeline.vue +73 -0
  264. package/template/src/components/ui/timeline/index.ts +1 -0
  265. package/template/src/components/ui/toggle/Toggle.vue +35 -0
  266. package/template/src/components/ui/toggle/index.ts +28 -0
  267. package/template/src/components/ui/toggle-group/ToggleGroup.vue +41 -0
  268. package/template/src/components/ui/toggle-group/ToggleGroupItem.vue +43 -0
  269. package/template/src/components/ui/toggle-group/index.ts +12 -0
  270. package/template/src/components/ui/tooltip/Tooltip.vue +19 -0
  271. package/template/src/components/ui/tooltip/TooltipContent.vue +34 -0
  272. package/template/src/components/ui/tooltip/TooltipProvider.vue +14 -0
  273. package/template/src/components/ui/tooltip/TooltipTrigger.vue +15 -0
  274. package/template/src/components/ui/tooltip/index.ts +4 -0
  275. package/template/src/components.d.ts +228 -0
  276. package/template/src/composables/useFormatter.ts +105 -0
  277. package/template/src/composables/useThemeConfig.ts +252 -0
  278. package/template/src/layouts/AdminLayout.vue +55 -0
  279. package/template/src/layouts/AuthLayout.vue +42 -0
  280. package/template/src/lib/axios.spec.ts +46 -0
  281. package/template/src/lib/axios.ts +243 -0
  282. package/template/src/lib/formatters.spec.ts +137 -0
  283. package/template/src/lib/formatters.ts +332 -0
  284. package/template/src/lib/loading-bar.ts +103 -0
  285. package/template/src/lib/utils.spec.ts +26 -0
  286. package/template/src/lib/utils.ts +7 -0
  287. package/template/src/lib/validation.spec.ts +78 -0
  288. package/template/src/main.ts +13 -0
  289. package/template/src/router/index.ts +147 -0
  290. package/template/src/services/auth.service.spec.ts +93 -0
  291. package/template/src/services/auth.service.ts +243 -0
  292. package/template/src/services/index.ts +3 -0
  293. package/template/src/services/types.ts +28 -0
  294. package/template/src/services/user.service.spec.ts +91 -0
  295. package/template/src/services/user.service.ts +283 -0
  296. package/template/src/stores/auth.spec.ts +52 -0
  297. package/template/src/stores/auth.ts +130 -0
  298. package/template/src/style.css +587 -0
  299. package/template/src/views/_starter/BlankView.vue +47 -0
  300. package/template/src/views/auth/ConfirmEmailView.vue +209 -0
  301. package/template/src/views/auth/ForgotPasswordView.vue +151 -0
  302. package/template/src/views/auth/LockScreenView.vue +175 -0
  303. package/template/src/views/auth/LoginView.vue +54 -0
  304. package/template/src/views/auth/RegisterView.vue +265 -0
  305. package/template/src/views/auth/ResetPasswordView.vue +260 -0
  306. package/template/src/views/auth/VerifyOtpView.vue +261 -0
  307. package/template/src/views/dashboard/IndexView.vue +159 -0
  308. package/template/src/views/errors/ComingSoonView.vue +241 -0
  309. package/template/src/views/errors/MaintenanceView.vue +252 -0
  310. package/template/src/views/errors/NotFoundView.vue +81 -0
  311. package/template/src/views/errors/ServerErrorView.vue +101 -0
  312. package/template/src/views/errors/UnauthorizedView.vue +64 -0
  313. package/template/tsconfig.app.json +27 -0
  314. package/template/tsconfig.json +19 -0
  315. package/template/tsconfig.node.json +23 -0
  316. package/template/vite.config.ts +46 -0
@@ -0,0 +1,587 @@
1
+
2
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
3
+
4
+ @font-face {
5
+ font-family: 'Inter';
6
+ src: url('./assets/fonts/InterVariable.woff2') format('woff2-variations');
7
+ font-weight: 100 900;
8
+ font-style: normal;
9
+ font-display: swap;
10
+ }
11
+
12
+ @font-face {
13
+ font-family: 'Inter Static';
14
+ src: url('./assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
15
+ font-weight: 400;
16
+ font-style: normal;
17
+ font-display: swap;
18
+ }
19
+
20
+ @font-face {
21
+ font-family: 'Inter Static';
22
+ src: url('./assets/fonts/inter-v20-latin-500.woff2') format('woff2');
23
+ font-weight: 500;
24
+ font-style: normal;
25
+ font-display: swap;
26
+ }
27
+
28
+ @font-face {
29
+ font-family: 'Inter Static';
30
+ src: url('./assets/fonts/inter-v20-latin-600.woff2') format('woff2');
31
+ font-weight: 600;
32
+ font-style: normal;
33
+ font-display: swap;
34
+ }
35
+
36
+ @font-face {
37
+ font-family: 'Inter Static';
38
+ src: url('./assets/fonts/inter-v20-latin-700.woff2') format('woff2');
39
+ font-weight: 700;
40
+ font-style: normal;
41
+ font-display: swap;
42
+ }
43
+
44
+ @import "tailwindcss";
45
+ @import "tw-animate-css";
46
+
47
+ @custom-variant dark (&:is(.dark *));
48
+
49
+ :root {
50
+ --radius: 0.375rem;
51
+ --background: oklch(0.978 0.003 159);
52
+ --foreground: oklch(0.145 0 0);
53
+ --card: oklch(1 0 0);
54
+ --card-foreground: oklch(0.145 0 0);
55
+ --popover: oklch(1 0 0);
56
+ --popover-foreground: oklch(0.145 0 0);
57
+ --primary: oklch(0.55 0.145 163.2);
58
+ --primary-foreground: oklch(0.99 0 0);
59
+ --secondary: oklch(0.955 0.003 159);
60
+ --secondary-foreground: oklch(0.205 0 0);
61
+ --muted: oklch(0.955 0.003 159);
62
+ --muted-foreground: oklch(0.556 0 0);
63
+ --accent: oklch(0.955 0.003 159);
64
+ --accent-foreground: oklch(0.205 0 0);
65
+ --destructive: oklch(0.577 0.245 27.325);
66
+ --destructive-foreground: oklch(0.985 0 0);
67
+ --border: oklch(0.92 0.003 159);
68
+ --input: oklch(0.92 0.003 159);
69
+ --ring: oklch(0.55 0.145 163.2 / 35%);
70
+ --chart-1: oklch(0.646 0.222 41.116);
71
+ --chart-2: oklch(0.55 0.145 163.2);
72
+ --chart-3: oklch(0.398 0.07 227.392);
73
+ --chart-4: oklch(0.828 0.189 84.429);
74
+ --chart-5: oklch(0.769 0.188 70.08);
75
+ --sidebar: oklch(0.985 0.003 159);
76
+ --sidebar-foreground: oklch(0.42 0.005 159);
77
+ --sidebar-primary: oklch(0.205 0 0);
78
+ --sidebar-primary-foreground: oklch(0.985 0 0);
79
+ --sidebar-accent: oklch(0.945 0.005 159);
80
+ --sidebar-accent-foreground: oklch(0.145 0 0);
81
+ --sidebar-border: oklch(0.92 0.003 159);
82
+ --sidebar-ring: oklch(0.708 0 0);
83
+
84
+ /* Unovis CSS Variable Resets (eliminates default white outer card/padding) */
85
+ --vis-tooltip-background-color: transparent;
86
+ --vis-tooltip-border-color: transparent;
87
+ --vis-tooltip-shadow-color: transparent;
88
+ --vis-tooltip-backdrop-filter: none;
89
+ --vis-tooltip-padding: 0px;
90
+ --vis-tooltip-border-radius: 0px;
91
+ --vis-tooltip-box-shadow: none;
92
+ --vis-dark-tooltip-background-color: transparent;
93
+ --vis-dark-tooltip-border-color: transparent;
94
+ --vis-dark-tooltip-shadow-color: transparent;
95
+ }
96
+
97
+ @theme inline {
98
+ --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
99
+ --font-heading: var(--font-sans);
100
+
101
+ /* Supabase Emerald Brand Color Palette */
102
+ --color-brand-50: oklch(0.979 0.021 166.113);
103
+ --color-brand-100: oklch(0.945 0.055 165.2);
104
+ --color-brand-200: oklch(0.905 0.093 164.15);
105
+ --color-brand-300: oklch(0.845 0.143 164.978);
106
+ --color-brand-400: oklch(0.765 0.177 163.223);
107
+ --color-brand-500: oklch(0.696 0.17 162.48);
108
+ --color-brand-600: oklch(0.596 0.145 163.225);
109
+ --color-brand-700: oklch(0.508 0.118 165.612);
110
+ --color-brand-800: oklch(0.442 0.098 167.2);
111
+ --color-brand-900: oklch(0.378 0.077 168.94);
112
+ --color-brand-950: oklch(0.262 0.051 172.552);
113
+ --color-brand: var(--color-brand-500);
114
+ --color-brand-foreground: oklch(0.985 0 0);
115
+
116
+ --color-sidebar-ring: var(--sidebar-ring);
117
+ --color-sidebar-border: var(--sidebar-border);
118
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
119
+ --color-sidebar-accent: var(--sidebar-accent);
120
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
121
+ --color-sidebar-primary: var(--sidebar-primary);
122
+ --color-sidebar-foreground: var(--sidebar-foreground);
123
+ --color-sidebar: var(--sidebar);
124
+ --color-chart-5: var(--chart-5);
125
+ --color-chart-4: var(--chart-4);
126
+ --color-chart-3: var(--chart-3);
127
+ --color-chart-2: var(--chart-2);
128
+ --color-chart-1: var(--chart-1);
129
+ --color-ring: var(--ring);
130
+ --color-input: var(--input);
131
+ --color-border: var(--border);
132
+ --color-destructive: var(--destructive);
133
+ --color-accent-foreground: var(--accent-foreground);
134
+ --color-accent: var(--accent);
135
+ --color-muted-foreground: var(--muted-foreground);
136
+ --color-muted: var(--muted);
137
+ --color-secondary-foreground: var(--secondary-foreground);
138
+ --color-secondary: var(--secondary);
139
+ --color-primary-foreground: var(--primary-foreground);
140
+ --color-primary: var(--primary);
141
+ --color-popover-foreground: var(--popover-foreground);
142
+ --color-popover: var(--popover);
143
+ --color-card-foreground: var(--card-foreground);
144
+ --color-card: var(--card);
145
+ --color-foreground: var(--foreground);
146
+ --color-background: var(--background);
147
+ --radius-xs: calc(var(--radius) - 2px);
148
+ --radius-sm: calc(var(--radius) - 2px);
149
+ --radius-md: var(--radius);
150
+ --radius-lg: calc(var(--radius) + 2px);
151
+ --radius-xl: calc(var(--radius) + 4px);
152
+
153
+ /* Supabase Compact Typography Scale */
154
+ --text-xs: 0.75rem;
155
+ --text-xs--line-height: calc(1 / 0.75);
156
+ --text-sm: 0.8125rem;
157
+ --text-sm--line-height: calc(1.25 / 0.8125);
158
+ --text-base: 0.9375rem;
159
+ --text-base--line-height: 1.5;
160
+ --text-lg: 1rem;
161
+ --text-lg--line-height: 1.5;
162
+ --text-xl: 1.125rem;
163
+ --text-xl--line-height: 1.4;
164
+ --text-2xl: 1.375rem;
165
+ --text-2xl--line-height: 1.35;
166
+ --text-3xl: 1.75rem;
167
+ --text-3xl--line-height: 1.25;
168
+ --font-weight-normal: 450;
169
+
170
+ --animate-accordion-down: accordion-down 0.2s ease-out;
171
+ --animate-accordion-up: accordion-up 0.2s ease-out;
172
+ --animate-collapsible-down: collapsible-down 0.2s ease-out;
173
+ --animate-collapsible-up: collapsible-up 0.2s ease-out;
174
+ }
175
+
176
+ .dark {
177
+ --background: oklch(0.17 0.006 159);
178
+ --foreground: oklch(0.985 0 0);
179
+ --card: oklch(0.205 0.007 159);
180
+ --card-foreground: oklch(0.985 0 0);
181
+ --popover: oklch(0.205 0.007 159);
182
+ --popover-foreground: oklch(0.985 0 0);
183
+ --primary: oklch(0.48 0.125 163.2);
184
+ --primary-foreground: oklch(0.99 0 0);
185
+ --secondary: oklch(0.26 0.008 159);
186
+ --secondary-foreground: oklch(0.985 0 0);
187
+ --muted: oklch(0.26 0.008 159);
188
+ --muted-foreground: oklch(0.708 0 0);
189
+ --accent: oklch(0.26 0.008 159);
190
+ --accent-foreground: oklch(0.985 0 0);
191
+ --destructive: oklch(0.704 0.191 22.216);
192
+ --destructive-foreground: oklch(0.985 0 0);
193
+ --border: oklch(1 0 0 / 10%);
194
+ --input: oklch(1 0 0 / 15%);
195
+ --ring: oklch(0.55 0.145 163.2 / 35%);
196
+ --chart-1: oklch(0.488 0.243 264.376);
197
+ --chart-2: oklch(0.55 0.145 163.2);
198
+ --chart-3: oklch(0.769 0.188 70.08);
199
+ --chart-4: oklch(0.627 0.265 303.9);
200
+ --chart-5: oklch(0.645 0.246 16.439);
201
+ --sidebar: oklch(0.15 0.006 159);
202
+ --sidebar-foreground: oklch(0.72 0.006 159);
203
+ --sidebar-primary: oklch(0.48 0.125 163.2);
204
+ --sidebar-primary-foreground: oklch(0.99 0 0);
205
+ --sidebar-accent: oklch(0.22 0.008 159);
206
+ --sidebar-accent-foreground: oklch(0.985 0 0);
207
+ --sidebar-border: oklch(1 0 0 / 8%);
208
+ --sidebar-ring: oklch(0.55 0.145 163.2 / 35%);
209
+
210
+ /* Unovis CSS Variable Resets (Dark) */
211
+ --vis-tooltip-background-color: transparent;
212
+ --vis-tooltip-border-color: transparent;
213
+ --vis-tooltip-shadow-color: transparent;
214
+ --vis-tooltip-backdrop-filter: none;
215
+ --vis-tooltip-padding: 0px;
216
+ --vis-tooltip-border-radius: 0px;
217
+ --vis-tooltip-box-shadow: none;
218
+ --vis-dark-tooltip-background-color: transparent;
219
+ --vis-dark-tooltip-border-color: transparent;
220
+ --vis-dark-tooltip-shadow-color: transparent;
221
+ }
222
+
223
+ @layer base {
224
+ * {
225
+ @apply border-border outline-ring/50;
226
+ scrollbar-width: thin;
227
+ scrollbar-color: oklch(0.145 0 0 / 20%) transparent;
228
+ }
229
+ .dark * {
230
+ scrollbar-color: oklch(0.985 0 0 / 20%) transparent;
231
+ }
232
+
233
+ html, body {
234
+ @apply bg-background text-foreground font-sans antialiased;
235
+ font-weight: 450;
236
+ letter-spacing: -0.011em;
237
+ height: 100%;
238
+ }
239
+
240
+ #app {
241
+ height: 100%;
242
+ }
243
+
244
+ /* Disable spinner buttons / arrows on type="number" inputs globally */
245
+ input[type="number"]::-webkit-outer-spin-button,
246
+ input[type="number"]::-webkit-inner-spin-button {
247
+ -webkit-appearance: none;
248
+ margin: 0;
249
+ }
250
+
251
+ input[type="number"] {
252
+ -moz-appearance: textfield;
253
+ appearance: textfield;
254
+ }
255
+ }
256
+
257
+ /* Custom Minimalist & Modern Scrollbar Style */
258
+ ::-webkit-scrollbar {
259
+ width: 6px;
260
+ height: 6px;
261
+ }
262
+
263
+ ::-webkit-scrollbar-track {
264
+ background: transparent;
265
+ }
266
+
267
+ ::-webkit-scrollbar-thumb {
268
+ background: oklch(0.145 0 0 / 18%);
269
+ border-radius: 9999px;
270
+ transition: background-color 0.2s ease;
271
+ }
272
+
273
+ ::-webkit-scrollbar-thumb:hover {
274
+ background: oklch(0.145 0 0 / 35%);
275
+ }
276
+
277
+ .dark ::-webkit-scrollbar-thumb {
278
+ background: oklch(0.985 0 0 / 18%);
279
+ }
280
+
281
+ .dark ::-webkit-scrollbar-thumb:hover {
282
+ background: oklch(0.985 0 0 / 35%);
283
+ }
284
+
285
+ /* Animation Keyframes */
286
+ @keyframes tw-shimmer {
287
+ 0% {
288
+ background-position: 100% 0;
289
+ }
290
+ to {
291
+ background-position: 0 0;
292
+ }
293
+ }
294
+
295
+ @keyframes pulse-radar {
296
+ 0% {
297
+ transform: scale(1);
298
+ opacity: 0.8;
299
+ }
300
+ 100% {
301
+ transform: scale(2.5);
302
+ opacity: 0;
303
+ }
304
+ }
305
+
306
+ @keyframes accordion-down {
307
+ from {
308
+ height: 0;
309
+ }
310
+ to {
311
+ height: var(--reka-accordion-content-height, var(--radix-accordion-content-height, auto));
312
+ }
313
+ }
314
+
315
+ @keyframes accordion-up {
316
+ from {
317
+ height: var(--reka-accordion-content-height, var(--radix-accordion-content-height, auto));
318
+ }
319
+ to {
320
+ height: 0;
321
+ }
322
+ }
323
+
324
+ @keyframes collapsible-down {
325
+ from {
326
+ height: 0;
327
+ }
328
+ to {
329
+ height: var(--reka-collapsible-content-height, var(--radix-collapsible-content-height, auto));
330
+ }
331
+ }
332
+
333
+ @keyframes collapsible-up {
334
+ from {
335
+ height: var(--reka-collapsible-content-height, var(--radix-collapsible-content-height, auto));
336
+ }
337
+ to {
338
+ height: 0;
339
+ }
340
+ }
341
+
342
+ @layer utilities {
343
+ /* Heading Text Gradients */
344
+ .heading-gradient {
345
+ background-image: linear-gradient(to bottom, var(--foreground), oklch(from var(--foreground) l c h / 70%));
346
+ -webkit-background-clip: text;
347
+ background-clip: text;
348
+ color: transparent;
349
+ }
350
+
351
+ .heading-gradient-brand {
352
+ background-image: linear-gradient(135deg, var(--color-brand-400), var(--color-brand-600));
353
+ -webkit-background-clip: text;
354
+ background-clip: text;
355
+ color: transparent;
356
+ }
357
+
358
+ /* Shimmer Animation */
359
+ .shimmer {
360
+ --shimmer-spread: calc(3ch + 40px);
361
+ background-image: linear-gradient(
362
+ 110deg,
363
+ transparent calc(50% - var(--shimmer-spread)),
364
+ oklch(from currentColor l c h / 20%) 50%,
365
+ transparent calc(50% + var(--shimmer-spread))
366
+ );
367
+ background-repeat: no-repeat;
368
+ background-size: 200% 100%;
369
+ animation: tw-shimmer 2.5s linear infinite;
370
+ }
371
+
372
+ /* Subtle Card Top Highlight */
373
+ .highlight-card {
374
+ box-shadow: inset 0 1px 0 0 oklch(1 0 0 / 8%);
375
+ }
376
+
377
+ .dark .highlight-card {
378
+ box-shadow: inset 0 1px 0 0 oklch(1 0 0 / 12%);
379
+ }
380
+
381
+ /* Interactive Hit-Area Expansion */
382
+ .hit-area-6 {
383
+ position: relative;
384
+ }
385
+ .hit-area-6::before {
386
+ content: "";
387
+ position: absolute;
388
+ inset: -6px;
389
+ pointer-events: inherit;
390
+ }
391
+
392
+ /* Ambient Glow Area for Cards / Badges */
393
+ .glow-area {
394
+ position: relative;
395
+ overflow: hidden;
396
+ }
397
+ .glow-area::after {
398
+ content: "";
399
+ position: absolute;
400
+ inset: -50%;
401
+ background: radial-gradient(circle at center, oklch(from var(--primary) l c h / 15%), transparent 70%);
402
+ pointer-events: none;
403
+ z-index: 0;
404
+ }
405
+
406
+ /* Live Status Indicator (Pulse Radar Dot) */
407
+ .status-dot {
408
+ position: relative;
409
+ display: inline-flex;
410
+ width: 0.5rem;
411
+ height: 0.5rem;
412
+ border-radius: 9999px;
413
+ background-color: var(--color-brand-500);
414
+ flex-shrink: 0;
415
+ }
416
+ .status-dot::after {
417
+ content: "";
418
+ position: absolute;
419
+ inset: 0;
420
+ border-radius: 9999px;
421
+ background-color: inherit;
422
+ animation: pulse-radar 2s cubic-bezier(0, 0, 0.2, 1) infinite;
423
+ }
424
+ .status-dot-amber { background-color: oklch(0.75 0.16 70); }
425
+ .status-dot-red { background-color: oklch(0.63 0.22 25); }
426
+ .status-dot-blue { background-color: oklch(0.65 0.18 240); }
427
+
428
+ /* Smooth Edge Fade Masks */
429
+ .mask-fade-x {
430
+ -webkit-mask-image: linear-gradient(to right, black calc(100% - 2.5rem), transparent 100%);
431
+ mask-image: linear-gradient(to right, black calc(100% - 2.5rem), transparent 100%);
432
+ }
433
+ .mask-fade-y {
434
+ -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 2.5rem), transparent 100%);
435
+ mask-image: linear-gradient(to bottom, black calc(100% - 2.5rem), transparent 100%);
436
+ }
437
+
438
+ /* Studio-style Monospace Subtitle / Label */
439
+ .label-mono {
440
+ font-family: var(--font-mono, monospace);
441
+ font-size: 0.6875rem;
442
+ font-weight: 500;
443
+ letter-spacing: 0.08em;
444
+ text-transform: uppercase;
445
+ color: var(--muted-foreground);
446
+ }
447
+
448
+ /* Modern Subtle Background Patterns */
449
+ .bg-grid-pattern {
450
+ background-size: 24px 24px;
451
+ background-image: linear-gradient(to right, oklch(0.145 0 0 / 5%) 1px, transparent 1px),
452
+ linear-gradient(to bottom, oklch(0.145 0 0 / 5%) 1px, transparent 1px);
453
+ }
454
+ .dark .bg-grid-pattern {
455
+ background-image: linear-gradient(to right, oklch(0.985 0 0 / 5%) 1px, transparent 1px),
456
+ linear-gradient(to bottom, oklch(0.985 0 0 / 5%) 1px, transparent 1px);
457
+ }
458
+
459
+ .bg-dot-pattern {
460
+ background-size: 20px 20px;
461
+ background-image: radial-gradient(circle, oklch(0.145 0 0 / 8%) 1px, transparent 1px);
462
+ }
463
+ .dark .bg-dot-pattern {
464
+ background-image: radial-gradient(circle, oklch(0.985 0 0 / 8%) 1px, transparent 1px);
465
+ }
466
+
467
+ /* Page Route Transitions */
468
+ .page-enter-active,
469
+ .page-leave-active {
470
+ transition: opacity 0.15s ease-out, transform 0.15s ease-out;
471
+ }
472
+
473
+ .page-enter-from {
474
+ opacity: 0;
475
+ transform: translateY(4px);
476
+ }
477
+
478
+ .page-leave-to {
479
+ opacity: 0;
480
+ transform: translateY(-4px);
481
+ }
482
+
483
+ @media (prefers-reduced-motion: reduce) {
484
+ .page-enter-active,
485
+ .page-leave-active {
486
+ transition: none;
487
+ }
488
+ .page-enter-from,
489
+ .page-leave-to {
490
+ transform: none;
491
+ opacity: 1;
492
+ }
493
+ }
494
+
495
+ /* Print Stylesheet (Clean PDF/Paper Export) */
496
+ @media print {
497
+ header,
498
+ aside,
499
+ nav,
500
+ .no-print,
501
+ [data-sidebar="sidebar"],
502
+ button:not(.print-include) {
503
+ display: none !important;
504
+ }
505
+
506
+ body {
507
+ background: white !important;
508
+ color: black !important;
509
+ font-size: 11pt !important;
510
+ }
511
+
512
+ main {
513
+ padding: 0 !important;
514
+ overflow: visible !important;
515
+ max-height: none !important;
516
+ }
517
+
518
+ [class*="shadow-"] {
519
+ box-shadow: none !important;
520
+ }
521
+ }
522
+
523
+ }
524
+
525
+ /* ─── Unovis Chart Global Styling ─────────────────────────────────────────── */
526
+ .unovis-xy-container svg,
527
+ .unovis-single-container svg {
528
+ overflow: visible;
529
+ }
530
+
531
+ /* Grid lines — light mode */
532
+ .unovis-axis g line {
533
+ stroke: oklch(0.92 0.003 159) !important;
534
+ stroke-dasharray: 4 4 !important;
535
+ stroke-opacity: 0.7 !important;
536
+ }
537
+
538
+ /* Grid lines — dark mode */
539
+ .dark .unovis-axis g line {
540
+ stroke: oklch(1 0 0 / 12%) !important;
541
+ stroke-dasharray: 4 4 !important;
542
+ stroke-opacity: 1 !important;
543
+ }
544
+
545
+ /* Hide axis domain & tick lines */
546
+ .unovis-axis path.domain {
547
+ display: none !important;
548
+ }
549
+
550
+ /* Axis tick text */
551
+ .unovis-axis text {
552
+ fill: oklch(0.556 0 0) !important;
553
+ font-size: 11px !important;
554
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
555
+ }
556
+ .dark .unovis-axis text {
557
+ fill: oklch(0.708 0 0) !important;
558
+ }
559
+
560
+ /* Crosshair */
561
+ .unovis-crosshair line {
562
+ stroke: oklch(0.48 0.125 163.2) !important;
563
+ stroke-dasharray: 3 3 !important;
564
+ stroke-opacity: 0.6 !important;
565
+ }
566
+ .dark .unovis-crosshair line {
567
+ stroke: oklch(0.48 0.125 163.2) !important;
568
+ }
569
+
570
+ /* Crosshair circle dots */
571
+ .unovis-crosshair circle {
572
+ stroke-width: 2px !important;
573
+ }
574
+
575
+ /* Tooltip outer wrapper resets (eliminates outer white card & padding) */
576
+ [data-unovis-tooltip],
577
+ .unovis-tooltip,
578
+ div[class*="tooltip_root"],
579
+ div[class*="tooltip"] {
580
+ background-color: transparent !important;
581
+ background: transparent !important;
582
+ border: none !important;
583
+ box-shadow: none !important;
584
+ padding: 0 !important;
585
+ border-radius: 0 !important;
586
+ backdrop-filter: none !important;
587
+ }
@@ -0,0 +1,47 @@
1
+ <script setup lang="ts">
2
+ /**
3
+ * Blank Page Template
4
+ *
5
+ * Vue reactivity (ref, computed, watch, onMounted, useRoute, useRouter, ...)
6
+ * and UI components (Button, Card, CardContent, CardHeader, CardTitle, PageHeader, Input, Badge, ...)
7
+ * are AUTO-IMPORTED — no need to write imports for them.
8
+ *
9
+ * Only Lucide icons need to be imported explicitly:
10
+ * import { Plus, Search } from '@lucide/vue'
11
+ */
12
+ import { Plus } from '@lucide/vue'
13
+
14
+ // Example reactive state
15
+ const searchQuery = ref('')
16
+ </script>
17
+
18
+ <template>
19
+ <div class="space-y-6 w-full mx-auto pb-12">
20
+ <!-- ─── Page Header ────────────────────────────────────────────── -->
21
+ <PageHeader
22
+ title="Page Title"
23
+ description="Short description of this page."
24
+ >
25
+ <template #actions>
26
+ <Button size="sm" class="gap-1.5 shrink-0">
27
+ <Plus class="h-3.5 w-3.5" />
28
+ New Item
29
+ </Button>
30
+ </template>
31
+ </PageHeader>
32
+
33
+ <!-- ─── Main Content Card ─────────────────────────────────────── -->
34
+ <Card flush>
35
+ <CardHeader section class="flex flex-row items-center justify-between">
36
+ <div>
37
+ <CardTitle class="text-base font-semibold">Section Title</CardTitle>
38
+ </div>
39
+ <Input v-model="searchQuery" placeholder="Search..." class="h-8 w-56 text-xs" />
40
+ </CardHeader>
41
+ <CardContent class="p-6">
42
+ <!-- Content goes here -->
43
+ <p class="text-sm text-muted-foreground">Your content here.</p>
44
+ </CardContent>
45
+ </Card>
46
+ </div>
47
+ </template>