mirror of
https://github.com/wireadmin/wireadmin
synced 2025-06-26 18:28:06 +00:00
22 lines
605 B
Svelte
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>
|