bullish/frontend/src/components/Footer.vue

28 lines
344 B
Vue
Raw Normal View History

<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>