Almost complete

This commit is contained in:
neutrino2211
2025-09-19 23:26:58 +01:00
parent 344596e390
commit 74a383448b
12 changed files with 952 additions and 53 deletions

27
src/data/creative.ts Normal file
View File

@@ -0,0 +1,27 @@
export interface ArtItem {
id: string;
title: string;
description: string;
imageUrl?: string;
createdAt: string;
medium: string;
}
export interface Story {
id: string;
title: string;
content: string;
excerpt: string;
createdAt: string;
readTime: number;
}
export interface Thought {
id: string;
title: string;
content: string;
excerpt: string;
createdAt: string;
category: 'technology' | 'life' | 'creativity';
readTime: number;
}