footer, feedback, subscribe

This commit is contained in:
Schneider Roland
2025-01-21 23:19:02 +01:00
parent a068aeb375
commit 86dda89db9
43 changed files with 841 additions and 162 deletions

View File

@@ -0,0 +1,16 @@
// Interface automatically generated by schemas-to-ts
export interface Button {
label?: string;
link?: string;
}
export interface Button_Plain {
label?: string;
link?: string;
}
export interface Button_NoRelations {
label?: string;
link?: string;
}

View File

@@ -0,0 +1,16 @@
// Interface automatically generated by schemas-to-ts
export interface Link {
linkLabel?: string;
linkHref?: string;
}
export interface Link_Plain {
linkLabel?: string;
linkHref?: string;
}
export interface Link_NoRelations {
linkLabel?: string;
linkHref?: string;
}