change: refer to developer

This commit is contained in:
Julian Krauser 2025-02-10 11:38:56 +01:00
parent 6ef846d94f
commit 1553f5644c
2 changed files with 8 additions and 3 deletions

View file

@ -15,8 +15,13 @@
</NuxtLink>
</div>
</div>
<div class="text-base text-center">@Copyright {{ new Date().getFullYear() }} {{ footer.copyright }}</div>
<div class="text-base text-center">verwaltet von {{ footer.designed_developed_by }}</div>
<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>
<a href="https://ff-admin.de/webpage" target="_blank">FF Webpage</a>
entwickelt von
<a href="https://jk-effects.com" target="_blank">JK Effects</a>
</p>
</footer>
</template>

View file

@ -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[];
}