16 lines
445 B
Vue
16 lines
445 B
Vue
<template>
|
|
<!-- Footer -->
|
|
<footer class="footer bg-white relative pt-1 border-b-2 border-blue-700">
|
|
|
|
<div class="mt-16 bg-gray-700 border-t-2 border-gray-300 flex flex-col items-center">
|
|
<div class="sm:w-2/3 text-center py-6">
|
|
<p class="text-sm text-blue-700 font-bold mb-2">
|
|
© 2021 by Jaro
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- ./Footer -->
|
|
</template>
|