Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion frontend/src/pages/AITagging/AITagging.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ import {
} from '@/components/Media/ChronologicalGallery';
import TimelineScrollbar from '@/components/Timeline/TimelineScrollbar';
import { EmptyAITaggingState } from '@/components/EmptyStates/EmptyAITaggingState';
import { useNavigate } from 'react-router-dom';
import { Settings } from 'lucide-react';
import { Button } from '@/components/ui/button';

export const AITagging = () => {
const navigate = useNavigate();
const dispatch = useDispatch();
const scrollableRef = useRef<HTMLDivElement>(null);
const [monthMarkers, setMonthMarkers] = useState<MonthMarker[]>([]);
Expand Down Expand Up @@ -47,7 +51,20 @@ export const AITagging = () => {
ref={scrollableRef}
className="hide-scrollbar flex-1 overflow-x-hidden overflow-y-auto"
>
<h1 className="mt-6 mb-6 text-2xl font-bold">AI Tagging</h1>
<div className="mt-6 mb-6 flex items-center justify-between">
<h1 className="text-2xl font-bold">AI Tagging</h1>

{/* Configure Tagging Button */}
<Button
variant="outline"
size="sm"
onClick={() => navigate('/settings')}
className="gap-2"
>
<Settings className="h-4 w-4" />
Configure Tagging
</Button>
</div>

{/* Face Collections Section */}
<div className="mb-8">
Expand Down