mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-04 01:22:32 +00:00
18 lines
635 B
Svelte
18 lines
635 B
Svelte
![]() |
<script lang="ts">
|
||
|
import { Button } from '$lib/components/ui/button';
|
||
|
</script>
|
||
|
|
||
|
<footer class="w-full">
|
||
|
<div class="mx-6 py-2 flex flex-row flex-wrap border-t">
|
||
|
<div class="flex flex-row" id="contact">
|
||
|
<Button variant="link" href="https://github.com/gpxstudio/gpx.studio" target="_blank"
|
||
|
>GitHub</Button
|
||
|
>
|
||
|
<Button variant="link" href="https://facebook.com/gpx.studio" target="_blank">Facebook</Button
|
||
|
>
|
||
|
<Button variant="link" href="https://twitter.com/gpxstudio" target="_blank">Twitter</Button>
|
||
|
<Button variant="link" href="mailto:hello@gpx.studio" target="_blank">Mail</Button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</footer>
|