diff --git a/components/Footer.vue b/components/Footer.vue index 8d2437b..c51f338 100644 --- a/components/Footer.vue +++ b/components/Footer.vue @@ -15,8 +15,13 @@ -
@Copyright {{ new Date().getFullYear() }} {{ footer.copyright }}
+Inhalte verwaltet von {{ footer.maintained }}
++ FF Webpage + entwickelt von + JK Effects +
diff --git a/types/component/globalFooter.ts b/types/component/globalFooter.ts index 8294a83..022a1c5 100644 --- a/types/component/globalFooter.ts +++ b/types/component/globalFooter.ts @@ -3,6 +3,6 @@ import type FooterLink from "./itemsFooterLink"; export default interface Footer { id: number; copyright: string; - designed_developed_by: string; + maintained: string; links: FooterLink[]; }