This commit is contained in:
Vendored
+1
@@ -28,6 +28,7 @@ declare module 'vue' {
|
|||||||
CreateSummarySection: typeof import('./src/components/create/CreateSummarySection.vue')['default']
|
CreateSummarySection: typeof import('./src/components/create/CreateSummarySection.vue')['default']
|
||||||
DownloadImageButton: typeof import('./src/components/manage/DownloadImageButton.vue')['default']
|
DownloadImageButton: typeof import('./src/components/manage/DownloadImageButton.vue')['default']
|
||||||
ExamplesSection: typeof import('./src/components/TheWelcome/ExamplesSection.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']
|
InputText: typeof import('primevue/inputtext')['default']
|
||||||
LayoutWithTabs: typeof import('./src/layouts/LayoutWithTabs.vue')['default']
|
LayoutWithTabs: typeof import('./src/layouts/LayoutWithTabs.vue')['default']
|
||||||
LinkCopyButton: typeof import('./src/components/link/LinkCopyButton.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 -->
|
||||||
<footer class="py-4 border-t text-center dark:border-gray-700">
|
<footer class="py-4 border-t text-center dark:border-gray-700">
|
||||||
<p>НаСвязи © 2024</p>
|
<FooterCopyright />
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts"></script>
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<footer
|
<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"
|
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>
|
</footer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user