chore: refactoring, routing structure

This commit is contained in:
Jarrod Flesch
2025-03-25 14:09:32 -04:00
parent 953c538af0
commit f762d683c6
67 changed files with 3499 additions and 1475 deletions

View File

@@ -132,7 +132,7 @@ export interface Post {
id: string;
title?: string | null;
heroImage?: (string | null) | Media;
_parentFolder: string | FolderInterface;
_parentFolder?: (string | null) | FolderInterface;
_folderSearch?: string | null;
updatedAt: string;
createdAt: string;
@@ -143,7 +143,7 @@ export interface Post {
*/
export interface Media {
id: string;
_parentFolder: string | FolderInterface;
_parentFolder?: (string | null) | FolderInterface;
_folderSearch?: string | null;
updatedAt: string;
createdAt: string;