2024-04-04 01:37:06 -07:00
|
|
|
<script lang="ts">
|
2024-04-02 23:27:24 -07:00
|
|
|
import Separator from './ui/separator/separator.svelte';
|
2024-04-03 02:16:22 -07:00
|
|
|
import Socials from './Socials.svelte';
|
2024-04-04 01:37:06 -07:00
|
|
|
import getUnicodeFlagIcon from 'country-flag-icons/unicode';
|
2024-04-02 19:50:50 -07:00
|
|
|
</script>
|
|
|
|
|
2024-04-04 01:37:06 -07:00
|
|
|
<footer class="h-24 px-2 mb-10 text-sm md:text-md xl:text-lg">
|
2024-04-02 23:27:24 -07:00
|
|
|
<Separator class="mb-4" />
|
2024-04-02 19:50:50 -07:00
|
|
|
<div class="flex justify-center flex-col gap-4">
|
2024-04-03 02:16:22 -07:00
|
|
|
<Socials center />
|
2024-04-03 16:22:43 -07:00
|
|
|
<p class="text-muted-foreground text-center">
|
2024-04-02 23:27:24 -07:00
|
|
|
© 2024 Youwen Wu | Built with <a
|
|
|
|
href="https://kit.svelte.dev"
|
|
|
|
target="_blank"
|
|
|
|
class="hover:underline"><strong>SvelteKit</strong></a
|
|
|
|
>
|
|
|
|
and
|
|
|
|
<a href="https://www.shadcn-svelte.com/" class="hover:underline" target="_blank"
|
|
|
|
><strong>shadcn-svelte</strong></a
|
|
|
|
>
|
|
|
|
|
|
2024-04-02 19:50:50 -07:00
|
|
|
<a href="https://github.com/couscousdude/coredump" target="_blank" class="hover:underline"
|
|
|
|
>View the source</a
|
|
|
|
>
|
2024-04-04 01:37:06 -07:00
|
|
|
| Long Live Palestine <span class="font-normal">{getUnicodeFlagIcon('PS')}</span>
|
2024-04-02 19:50:50 -07:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</footer>
|