1
0
Fork 0
ryanmoon.com/components/Footer.vue

14 lines
470 B
Vue
Raw Normal View History

2023-07-11 06:03:57 +00:00
<script setup>
const { isDesktopOrTablet } = useDevice();
</script>
<template>
<footer>
<p v-if="isDesktopOrTablet" >Made with blood, sweat, and media queries.</p>
<div class="links">
<NuxtLink to="/" target="_BLANK" ><h4>rss</h4></NuxtLink>
<NuxtLink to="https://git.inspin.io/ryan" target="_BLANK" ><h4>git</h4></NuxtLink>
2023-07-11 06:03:57 +00:00
<NuxtLink to="mailto:hello@ryanmoon.com"><h4>hello@ryanmoon.com</h4></NuxtLink>
</div>
</footer>
</template>