add faq page

This commit is contained in:
Schneider Roland
2025-01-31 21:42:52 +01:00
parent 93af3607e9
commit 3e3dbed6e6
28 changed files with 970 additions and 20 deletions

View File

@@ -0,0 +1,30 @@
// Interface automatically generated by schemas-to-ts
export interface YogaFaqQa {
id: number;
attributes: {
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
question?: string;
answer?: string;
};
}
export interface YogaFaqQa_Plain {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
question?: string;
answer?: string;
}
export interface YogaFaqQa_NoRelations {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
question?: string;
answer?: string;
}
export interface YogaFaqQa_AdminPanelLifeCycle {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
question?: string;
answer?: string;
}