Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- export type CardType = 'INFO_PAGE' | 'EXTERNAL_LINK' | 'IMAGE_GALLERY' | 'SERVICE_REQUEST';
-
- export interface Card {
- id: string;
- portalId: string;
- title: string;
- imageUrl: string;
- extraImages?: string[];
- shortDescription: string;
- fullContent: string;
- cardType: CardType;
- actionUrl?: string;
- displayOrder: number;
- }
-
- export interface Portal {
- id: string;
- tenantId: string;
- title: string;
- welcomeText: string;
- heroImageUrl: string;
- logoUrl: string;
- themeColor: string;
- fadeHeroImage?: boolean;
- maxGridColumns?: number;
- }
|