wireadmin/web/src/lib/components/page/PageFooter.svelte
Shahrad Elahi 9a6fdaa2a5
update
2024-05-29 20:01:36 +03:30

22 lines
605 B
Svelte

<script>
import DotDivider from '$lib/components/DotDivider.svelte';
</script>
<footer class={'flex items-center justify-center'}>
<a
href={'https://github.com/shahradelahi'}
title={'Find me on Github'}
class={'px-2 font-medium text-gray-400/80 hover:text-gray-500 text-xs'}
>
Made by <span class={'font-medium'}> Shahrad Elahi </span>
</a>
<DotDivider className="font-bold text-gray-400" />
<a
href={'https://github.com/wireadmin/wireadmin'}
title={'Github'}
class={'px-2 font-medium text-gray-400/80 hover:text-gray-500 text-xs'}
>
Github
</a>
</footer>