Implement Phase 4 optimizations

This commit is contained in:
gpt-engineer-app[bot]
2025-10-15 12:28:03 +00:00
parent 81a4b9ae31
commit 97337ed7a3
7 changed files with 1097 additions and 2 deletions

22
src/types/photos.ts Normal file
View File

@@ -0,0 +1,22 @@
/**
* Photo-related type definitions
*/
export interface PhotoItem {
id: string;
url: string;
filename: string;
caption?: string;
size?: number;
type?: string;
}
export interface PhotoSubmissionItem {
id: string;
cloudflare_image_id: string;
cloudflare_image_url: string;
title?: string;
caption?: string;
date_taken?: string;
order_index: number;
}