[yoga-21] footer.component.tsx add editable image

This commit is contained in:
Roland Schneider
2025-08-26 22:07:19 +02:00
parent a3e57f295f
commit f1069f3124
13 changed files with 55 additions and 3 deletions

View File

@@ -1,8 +1,11 @@
// Interface automatically generated by schemas-to-ts
import { Link } from '../components/yoga-site/Link';
import { Media } from '../components/shared/Media';
import { Link_Plain } from '../components/yoga-site/Link';
import { Media_Plain } from '../components/shared/Media';
import { Link_NoRelations } from '../components/yoga-site/Link';
import { AdminPanelRelationPropertyModification } from '../common/AdminPanelRelationPropertyModification';
export interface YogaFooter {
id: number;
@@ -17,6 +20,7 @@ export interface YogaFooter {
contactUsLocation?: Link;
copyRight?: string;
name?: string;
logo?: { data: Media };
};
}
export interface YogaFooter_Plain {
@@ -31,6 +35,7 @@ export interface YogaFooter_Plain {
contactUsLocation?: Link_Plain;
copyRight?: string;
name?: string;
logo?: Media_Plain;
}
export interface YogaFooter_NoRelations {
@@ -45,6 +50,7 @@ export interface YogaFooter_NoRelations {
contactUsLocation?: Link_NoRelations;
copyRight?: string;
name?: string;
logo?: number;
}
export interface YogaFooter_AdminPanelLifeCycle {
@@ -59,4 +65,5 @@ export interface YogaFooter_AdminPanelLifeCycle {
contactUsLocation?: Link_Plain;
copyRight?: string;
name?: string;
logo?: AdminPanelRelationPropertyModification<Media_Plain>;
}