add service detail page

This commit is contained in:
Schneider Roland
2025-05-21 22:28:12 +02:00
committed by Roland Schneider
parent 4a0cf5762f
commit 22272e0a17
11 changed files with 118 additions and 30 deletions

View File

@@ -13,7 +13,7 @@ export interface YogaSingleService {
image?: { data: Media };
imageAlt?: string;
name?: string;
article?: string;
article?: any;
locale: string;
localizations?: { data: YogaSingleService[] };
};
@@ -26,7 +26,7 @@ export interface YogaSingleService_Plain {
image?: Media_Plain;
imageAlt?: string;
name?: string;
article?: string;
article?: any;
locale: string;
localizations?: YogaSingleService_Plain[];
}
@@ -39,7 +39,7 @@ export interface YogaSingleService_NoRelations {
image?: number;
imageAlt?: string;
name?: string;
article?: string;
article?: any;
locale: string;
localizations?: YogaSingleService[];
}
@@ -52,7 +52,7 @@ export interface YogaSingleService_AdminPanelLifeCycle {
image?: AdminPanelRelationPropertyModification<Media_Plain>;
imageAlt?: string;
name?: string;
article?: string;
article?: any;
locale: string;
localizations?: YogaSingleService[];
}