'use client'; import Note from '@/components/Note'; import { dateRangeForPhotos, PhotoDateRange } from '@/photo'; import clsx from 'clsx/lite'; import { FaCodeFork } from 'react-icons/fa6'; export default function AdminAppInsightsClient({ photosCount, tagsCount, camerasCount, filmSimulationsCount, lensesCount, dateRange, }: { photosCount: number tagsCount: number camerasCount: number filmSimulationsCount: number lensesCount: number dateRange?: PhotoDateRange }) { const { descriptionWithSpaces } = dateRangeForPhotos(undefined, dateRange); return (
Template Recommendations
} className="w-[clamp(300px,80%,1000px)] m-auto" > Consider forking this repository in order to receive new features and fixes
Library Stats
Photos
{photosCount}
Tags
{tagsCount}
Cameras
{camerasCount}
Films
{filmSimulationsCount}
Lenses
{lensesCount}
{descriptionWithSpaces}
); }