15 lines
521 B
Vue
15 lines
521 B
Vue
<script setup>
|
|
const { isDesktopOrTablet } = useDevice();
|
|
</script>
|
|
|
|
<template>
|
|
<footer>
|
|
<p v-if="isDesktopOrTablet" >Made with blood, sweat, and media queries.</p>
|
|
<div class="links">
|
|
<!-- <NuxtLink ><h4>dark</h4></NuxtLink> -->
|
|
<NuxtLink to="/" target="_BLANK" ><h4>rss</h4></NuxtLink>
|
|
<NuxtLink to="https://git.inspin.co/ryan" target="_BLANK" ><h4>git</h4></NuxtLink>
|
|
<NuxtLink to="mailto:hello@ryanmoon.com"><h4>hello@ryanmoon.com</h4></NuxtLink>
|
|
</div>
|
|
</footer>
|
|
</template> |