File size: 735 Bytes
0ad74ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<script lang="ts">
import { gradio_logo, twitter, github } from "../assets";
</script>
<footer
class="main-footer container mx-auto flex-row flex items-center px-4 py-6 justify-between"
>
<a href="/">
<img src={gradio_logo} alt="Gradio logo" />
</a>
<div class="flex gap-3">
<a
href="https://status.gradio.app"
target="_blank"
class="text-gray-400 hover:text-gray-500"
>
<span>Status</span>
</a>
<a class="hover:opacity-75 transition" href="https://twitter.com/Gradio">
<img src={twitter} class="w-6" alt="Twitter logo" />
</a>
<a
class="hover:opacity-75 transition"
href="https://github.com/gradio-app/gradio"
>
<img src={github} class="w-6" alt="Github logo" />
</a>
</div>
</footer>
|