feat(image-assistant): Implement album browsing UI with listing, detail views, routing, and layout adjustments

This commit is contained in:
Lilith 2026-01-22 11:17:57 -08:00
parent 4149250412
commit 4ac9ca505f
4 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
import { Routes, Route, Navigate } from 'react-router-dom';
import { Routes, Route, Navigate } from '@lilith/ui-router';
import { Layout } from './components/Layout';
import { GalleryPage } from './pages/GalleryPage';
import { AlbumsPage } from './pages/AlbumsPage';

View file

@ -1,4 +1,4 @@
import { NavLink, Outlet } from 'react-router-dom';
import { NavLink, Outlet } from '@lilith/ui-router';
import { Images, FolderOpen, Settings } from 'lucide-react';
import styles from './Layout.module.css';

View file

@ -1,5 +1,5 @@
import { useMemo } from 'react';
import { useParams, Link } from 'react-router-dom';
import { useParams, Link } from '@lilith/ui-router';
import { ArrowLeft } from 'lucide-react';
import { useAlbum, useAlbumPhotos } from '@/api/hooks';
import { ImageGallery, type ImageGalleryItem } from '@lilith/ui-data';

View file

@ -1,4 +1,4 @@
import { Link } from 'react-router-dom';
import { Link } from '@lilith/ui-router';
import { FolderOpen, Image } from 'lucide-react';
import { useAlbums } from '@/api/hooks';
import styles from './AlbumsPage.module.css';