This commit is contained in:
Vendored
+1
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user