'use client'; import Image from 'next/image'; import Link from 'next/link'; import UserMenu from '@/components/UserMenu'; import { ActionButtons } from '@/components/ActionButtons'; interface PageHeaderProps { photosCount: number; isLoggedIn: boolean; selectedPhotoIds: number[]; selectionMode: boolean; isBulkFavoriting: boolean; isPreparingDownload: boolean; onStartSlideshow: () => void; onTagSelected: () => void; onBulkFavorite: () => void; onDownloadSelected: () => void; onToggleSelectionMode: () => void; } export function PageHeader({ photosCount, isLoggedIn, selectedPhotoIds, selectionMode, isBulkFavoriting, isPreparingDownload, onStartSlideshow, onTagSelected, onBulkFavorite, onDownloadSelected, onToggleSelectionMode, }: PageHeaderProps) { return (
PunimTag

Browse our photo collection

); }