Almost complete
This commit is contained in:
27
src/data/creative.ts
Normal file
27
src/data/creative.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user