37 lines
977 B
Vue
37 lines
977 B
Vue
<template>
|
|
<!-- footer -->
|
|
<footer
|
|
class="flex items-center h-12 mt-5 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="hidden md:!block"
|
|
>
|
|
<a
|
|
class="link link-primary no-underline mr-4"
|
|
href="https://git.vdb.to/cerc-io/cosmos-explorer/src/branch/master/LICENSE"
|
|
target="noopener noreferrer"
|
|
>License</a
|
|
>
|
|
<a
|
|
class="link link-primary no-underline"
|
|
href="https://git.vdb.to/cerc-io/cosmos-explorer"
|
|
target="noopener noreferrer"
|
|
>Source</a
|
|
>
|
|
</div>
|
|
</footer>
|
|
</template> |