mirror of
https://github.com/wireadmin/wireadmin
synced 2025-06-26 18:28:06 +00:00
fix and complete auth ui
This commit is contained in:
5
web/src/lib/components/DotDivider.svelte
Normal file
5
web/src/lib/components/DotDivider.svelte
Normal file
@@ -0,0 +1,5 @@
|
||||
<script lang="ts">
|
||||
export let className: string | undefined;
|
||||
</script>
|
||||
|
||||
<span class:className> · </span>
|
||||
21
web/src/lib/components/page/PageFooter.svelte
Normal file
21
web/src/lib/components/page/PageFooter.svelte
Normal file
@@ -0,0 +1,21 @@
|
||||
<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/shahradelahi/wireadmin'}
|
||||
title={'Github'}
|
||||
class={'px-2 font-medium text-gray-400/80 hover:text-gray-500 text-xs'}
|
||||
>
|
||||
Github
|
||||
</a>
|
||||
</footer>
|
||||
Reference in New Issue
Block a user