bullish/frontend/src/components/Footer.vue
Ameya Shenoy 92169c0800
feat: landing page done
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2021-02-12 15:47:56 +05:30

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>