change: maintainer edit

This commit is contained in:
Julian Krauser 2025-02-10 11:39:56 +01:00
parent 1553f5644c
commit c2a7d15eeb
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@
</div> </div>
</div> </div>
<p class="text-base text-center">@Copyright {{ new Date().getFullYear() }} {{ footer.copyright }}</p> <p class="text-base text-center">@Copyright {{ new Date().getFullYear() }} {{ footer.copyright }}</p>
<p class="text-base text-center">Inhalte verwaltet von {{ footer.maintained }}</p> <p class="text-base text-center">Inhalte verwaltet von {{ footer?.maintained ?? footer.copyright }}</p>
<p> <p>
<a href="https://ff-admin.de/webpage" target="_blank">FF Webpage</a> <a href="https://ff-admin.de/webpage" target="_blank">FF Webpage</a>
entwickelt von entwickelt von

View file

@ -3,6 +3,6 @@ import type FooterLink from "./itemsFooterLink";
export default interface Footer { export default interface Footer {
id: number; id: number;
copyright: string; copyright: string;
maintained: string; maintained?: string;
links: FooterLink[]; links: FooterLink[];
} }