Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <template> <footer class="border-t bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60"> <div class="container mx-auto px-4 py-6"> <div class="flex flex-col items-center justify-center space-y-2 text-center text-sm text-muted-foreground"> <p>© {{ currentYear }} Nexora Software (Pty) Ltd. All rights reserved.</p> <p>Version {{ $page.props.app.version }}</p> </div> </div> </footer> </template> <script setup lang="ts"> import { computed } from 'vue'; const currentYear = computed(() => new Date().getFullYear()); </script> |