forked from LaconicNetwork/cosmos-explorer
38 lines
1.0 KiB
Vue
38 lines
1.0 KiB
Vue
<template>
|
|
<div class="h-12 bg-gray-100 dark:bg-[#171d30] w-full"></div>
|
|
<!-- footer -->
|
|
<footer
|
|
class="flex sm:!flex-row flex-col items-center h-12 text-sm bg-gray-100 dark:bg-[#171d30] py-2 z-10 w-full"
|
|
>
|
|
<div class="flex flex-1">
|
|
©
|
|
{{ new Date().getFullYear() }}
|
|
Made With
|
|
<img src="../../assets/images/heart.svg" />
|
|
By
|
|
<a
|
|
class="link link-primary no-underline"
|
|
href="https://ping.pub"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>Ping.pub</a
|
|
>
|
|
</div>
|
|
<div
|
|
class="flex "
|
|
>
|
|
<a
|
|
class="link link-primary no-underline mr-4"
|
|
href="https://github.com/ping-pub/explorer/blob/master/LICENSE"
|
|
target="noopener noreferrer"
|
|
>License</a
|
|
>
|
|
<a
|
|
class="link link-primary no-underline"
|
|
href="https://github.com/ping-pub/explorer"
|
|
target="noopener noreferrer"
|
|
>Github</a
|
|
>
|
|
</div>
|
|
</footer>
|
|
</template> |