27 lines
344 B
Vue
27 lines
344 B
Vue
|
|
|
|
<template>
|
|
<div class="footer">
|
|
<div>Crafted with ☕ by Ameya Shenoy</div>
|
|
<div>Powered by Vue and K3s</div>
|
|
<div>© 2021</div>
|
|
</div>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Footer',
|
|
}
|
|
</script>
|
|
|
|
|
|
<style>
|
|
.footer {
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
text-align: center;
|
|
position: absolute;
|
|
}
|
|
</style>
|