update year in copyright
Deploy app frontend / app frontend (push) Successful in 1m55s

This commit is contained in:
2025-01-22 16:10:10 +02:00
parent a5b7f504f9
commit 008ffb9ee0
4 changed files with 10 additions and 4 deletions
+1
View File
@@ -28,6 +28,7 @@ declare module 'vue' {
CreateSummarySection: typeof import('./src/components/create/CreateSummarySection.vue')['default']
DownloadImageButton: typeof import('./src/components/manage/DownloadImageButton.vue')['default']
ExamplesSection: typeof import('./src/components/TheWelcome/ExamplesSection.vue')['default']
FooterCopyright: typeof import('./src/components/FooterCopyright.vue')['default']
InputText: typeof import('primevue/inputtext')['default']
LayoutWithTabs: typeof import('./src/layouts/LayoutWithTabs.vue')['default']
LinkCopyButton: typeof import('./src/components/link/LinkCopyButton.vue')['default']
@@ -0,0 +1,7 @@
<template>
<p>НаСвязи © 2024-{{ year }}</p>
</template>
<script setup lang="ts">
const year = new Date().getFullYear()
</script>
@@ -62,9 +62,7 @@
<!-- Footer -->
<footer class="py-4 border-t text-center dark:border-gray-700">
<p>НаСвязи © 2024</p>
<FooterCopyright />
</footer>
</div>
</template>
<script setup lang="ts"></script>
+1 -1
View File
@@ -4,7 +4,7 @@
<footer
class="py-4 border-t text-center text-sm hidden sm:block border-gray-200 dark:border-gray-700 text-gray-600 dark:text-gray-400"
>
<p>НаСвязи © 2024</p>
<FooterCopyright />
</footer>
</template>