Refactor code structure for improved readability and maintainability

This commit is contained in:
hamed
2026-06-19 00:54:34 +03:30
parent 2943e29663
commit ccfb3391f2
8 changed files with 18046 additions and 48 deletions
+4 -5
View File
@@ -256,14 +256,13 @@ export interface Blog {
title: string;
slug: string;
summary: string | null;
content: string;
cover_image: string | null;
body: string;
image_url: string | null;
status: 'draft' | 'published';
author_name: string;
views_count: number;
author?: { uuid: string; name: string } | null;
tags: string[];
published_at: string | null;
created_at: string;
updated_at?: string;
}
export interface Secretary {