Remove AI generated content

This commit is contained in:
neutrino2211
2025-10-10 07:10:54 +01:00
parent d1b0577b69
commit 5d54506fe5
14 changed files with 443 additions and 244 deletions

View File

@@ -5,6 +5,15 @@ export interface ArtItem {
imageUrl?: string;
createdAt: string;
medium: string;
type: 'collection' | 'single';
images?: ArtImage[];
}
export interface ArtImage {
id: string;
url: string;
title?: string;
description?: string;
}
export interface Story {