14 lines
379 B
Vue
Raw Permalink Normal View History

2022-09-08 15:06:44 -04:00
<template>
<footer class="footer">
<div class="container-fluid">
<div class="row">
<div class="col-sm-6">{{ new Date().getFullYear() }} © Skote.</div>
<div class="col-sm-6">
<div class="text-sm-end d-none d-sm-block">Design & Develop by Themesbrand</div>
</div>
</div>
</div>
</footer>
<!-- end footer -->
</template>