feat(image-viewer): integrate ImageViewer component and update FolderPicker layout

- Added ImageViewer component to the App for displaying processed images.
- Updated FolderPicker layout for improved user guidance and aesthetics.
- Refactored ShortcutItem and Shortcuts components for better structure and clarity.
- Introduced ItemModal component for future use.
This commit is contained in:
2025-04-14 09:25:53 +02:00
parent 664918f431
commit 55614b34c7
6 changed files with 85 additions and 58 deletions

View File

@@ -0,0 +1,7 @@
export const ItemModal = () => {
return (
<div class="fixed inset-4 bg-white border border-neutral-300">
ItemModal
</div>
);
};