home and about page

This commit is contained in:
Schneider Roland
2025-01-26 11:06:15 +01:00
parent 86dda89db9
commit 04c436cb34
76 changed files with 2036 additions and 176 deletions

View File

@@ -0,0 +1,42 @@
// Interface automatically generated by schemas-to-ts
import { YogaAchivement } from './yoga-achivement';
import { YogaAchivement_Plain } from './yoga-achivement';
import { AdminPanelRelationPropertyModification } from '../common/AdminPanelRelationPropertyModification';
export interface YogaAchivementsComponent {
id: number;
attributes: {
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
header?: string;
description?: string;
name?: string;
achievements: { data: YogaAchivement[] };
};
}
export interface YogaAchivementsComponent_Plain {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
header?: string;
description?: string;
name?: string;
achievements: YogaAchivement_Plain[];
}
export interface YogaAchivementsComponent_NoRelations {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
header?: string;
description?: string;
name?: string;
achievements: number[];
}
export interface YogaAchivementsComponent_AdminPanelLifeCycle {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
header?: string;
description?: string;
name?: string;
achievements: AdminPanelRelationPropertyModification<YogaAchivement_Plain>;
}