20 lines
495 B
Vue
20 lines
495 B
Vue
<template>
|
|
<footer class="bg-gray-100 text-center py-4 mt-auto">
|
|
<div class="container mx-auto">
|
|
<p class="text-sm text-gray-600">
|
|
© {{ new Date().getFullYear() }} GPT-Load. All Rights Reserved.
|
|
</p>
|
|
<p class="text-xs text-gray-500 mt-1">
|
|
Version 1.0.0
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// No script needed for this simple component
|
|
</script>
|
|
|
|
<style scoped>
|
|
/* Add any component-specific styles here */
|
|
</style> |