2024-11-02 12:47:07 +01:00
|
|
|
import type { ComponentTypes } from "../component/baseComponent";
|
2025-02-14 13:57:55 +01:00
|
|
|
import type ItemsHero from "../component/items/hero";
|
2024-11-02 12:47:07 +01:00
|
|
|
|
2024-11-01 14:15:09 +01:00
|
|
|
export default interface Page {
|
|
|
|
id: number;
|
|
|
|
documentId: string;
|
|
|
|
identifier: string;
|
|
|
|
createdAt: string;
|
|
|
|
updatedAt: string;
|
|
|
|
publishedAt: string;
|
|
|
|
locale: string;
|
|
|
|
slug: string;
|
2025-02-14 13:57:55 +01:00
|
|
|
hero: ItemsHero;
|
2024-11-02 12:47:07 +01:00
|
|
|
content: Array<ComponentTypes>;
|
2024-11-01 14:15:09 +01:00
|
|
|
localizations: any[];
|
|
|
|
}
|