strap about page custom query

This commit is contained in:
Schneider Roland
2025-01-12 21:56:22 +01:00
parent 574d623746
commit 741dd19588
36 changed files with 878 additions and 89 deletions

View File

@@ -0,0 +1,16 @@
// Interface automatically generated by schemas-to-ts
export interface TitleDescription {
title?: string;
description?: string;
}
export interface TitleDescription_Plain {
title?: string;
description?: string;
}
export interface TitleDescription_NoRelations {
title?: string;
description?: string;
}

View File

@@ -0,0 +1,28 @@
// Interface automatically generated by schemas-to-ts
export interface AboutUs {
title?: string;
header?: string;
description?: string;
content?: string;
buttonLabel?: string;
buttonLink?: string;
}
export interface AboutUs_Plain {
title?: string;
header?: string;
description?: string;
content?: string;
buttonLabel?: string;
buttonLink?: string;
}
export interface AboutUs_NoRelations {
title?: string;
header?: string;
description?: string;
content?: string;
buttonLabel?: string;
buttonLink?: string;
}

View File

@@ -0,0 +1,19 @@
// Interface automatically generated by schemas-to-ts
export interface HeaderB {
header1?: string;
header2?: string;
description?: string;
}
export interface HeaderB_Plain {
header1?: string;
header2?: string;
description?: string;
}
export interface HeaderB_NoRelations {
header1?: string;
header2?: string;
description?: string;
}

View File

@@ -0,0 +1,19 @@
// Interface automatically generated by schemas-to-ts
export interface OurServicesComponent {
title?: string;
header?: string;
description?: string;
}
export interface OurServicesComponent_Plain {
title?: string;
header?: string;
description?: string;
}
export interface OurServicesComponent_NoRelations {
title?: string;
header?: string;
description?: string;
}

View File

@@ -0,0 +1,47 @@
// Interface automatically generated by schemas-to-ts
import { TitleDescription } from '../shared/TitleDescription';
import { TitleDescription_Plain } from '../shared/TitleDescription';
import { TitleDescription_NoRelations } from '../shared/TitleDescription';
export interface OurSpecialitiesComponent {
title?: string;
header?: string;
description?: string;
specialityLeft1?: TitleDescription;
specialityLeft2?: TitleDescription;
specialityLeft3?: TitleDescription;
specialityLeft4?: TitleDescription;
specialityRight1?: TitleDescription;
specialityRight2?: TitleDescription;
specialityRight3?: TitleDescription;
specialityRight4?: TitleDescription;
}
export interface OurSpecialitiesComponent_Plain {
title?: string;
header?: string;
description?: string;
specialityLeft1?: TitleDescription_Plain;
specialityLeft2?: TitleDescription_Plain;
specialityLeft3?: TitleDescription_Plain;
specialityLeft4?: TitleDescription_Plain;
specialityRight1?: TitleDescription_Plain;
specialityRight2?: TitleDescription_Plain;
specialityRight3?: TitleDescription_Plain;
specialityRight4?: TitleDescription_Plain;
}
export interface OurSpecialitiesComponent_NoRelations {
title?: string;
header?: string;
description?: string;
specialityLeft1?: TitleDescription_NoRelations;
specialityLeft2?: TitleDescription_NoRelations;
specialityLeft3?: TitleDescription_NoRelations;
specialityLeft4?: TitleDescription_NoRelations;
specialityRight1?: TitleDescription_NoRelations;
specialityRight2?: TitleDescription_NoRelations;
specialityRight3?: TitleDescription_NoRelations;
specialityRight4?: TitleDescription_NoRelations;
}