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

@@ -1,29 +1,5 @@
import { ArtItem, Story, Thought } from './creative';
import { loadStories, loadThoughts } from '@/utils/mdxLoader';
export const artItems: ArtItem[] = [
{
id: 'digital-landscapes',
title: 'Digital Landscapes',
description: 'Exploring the intersection of nature and technology through vibrant digital canvases',
createdAt: '2024-01-15',
medium: 'Digital Painting'
},
{
id: 'abstract-emotions',
title: 'Abstract Emotions',
description: 'A series exploring human emotions through color and form',
createdAt: '2024-02-20',
medium: 'Mixed Media'
},
{
id: 'cyberpunk-dreams',
title: 'Cyberpunk Dreams',
description: 'Futuristic cityscapes blending retro aesthetics with modern technology',
createdAt: '2024-03-10',
medium: '3D Render'
}
];
import { Story, Thought } from "./creative";
import { loadStories, loadThoughts } from "@/utils/mdxLoader";
// Load stories from MDX files
export async function getStories(): Promise<Story[]> {
@@ -33,4 +9,4 @@ export async function getStories(): Promise<Story[]> {
// Load thoughts from MDX files
export async function getThoughts(): Promise<Thought[]> {
return await loadThoughts();
}
}