diff --git a/frontend/src/components/EmptyStates/EmptyGalleryState.tsx b/frontend/src/components/EmptyStates/EmptyGalleryState.tsx index 881292638..2aa0df323 100644 --- a/frontend/src/components/EmptyStates/EmptyGalleryState.tsx +++ b/frontend/src/components/EmptyStates/EmptyGalleryState.tsx @@ -1,6 +1,10 @@ import { FolderOpen, Image as ImageIcon } from 'lucide-react'; +import { useNavigate } from "react-router"; +import { ROUTES } from '@/constants/routes'; export const EmptyGalleryState = () => { + const navigate = useNavigate(); + return (