2019-11-29 20:13:03 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<footer>
|
2020-06-23 21:37:09 +00:00
|
|
|
<NavItem
|
2020-01-30 06:11:24 +00:00
|
|
|
link="/about"
|
|
|
|
icon="person"
|
|
|
|
text="about"
|
|
|
|
/>
|
2020-06-23 21:37:09 +00:00
|
|
|
<NavItem
|
2020-01-30 06:11:24 +00:00
|
|
|
link="/games"
|
|
|
|
icon="videogame_asset"
|
|
|
|
text="game profile"
|
|
|
|
/>
|
2020-06-23 21:37:09 +00:00
|
|
|
<NavItem
|
2020-01-30 06:11:24 +00:00
|
|
|
link="/sns"
|
|
|
|
icon="contacts"
|
|
|
|
text="social media"
|
|
|
|
/>
|
2020-06-23 21:37:09 +00:00
|
|
|
<NavItem
|
2020-01-30 06:11:24 +00:00
|
|
|
link="//blog.nanao.moe"
|
|
|
|
icon="rss_feed"
|
|
|
|
text="blog"
|
|
|
|
external="true"
|
|
|
|
/>
|
2019-11-29 20:13:03 +00:00
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-06-23 21:37:09 +00:00
|
|
|
import NavItem from "./NavItem";
|
2019-11-29 20:13:03 +00:00
|
|
|
|
2020-01-30 06:11:24 +00:00
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
},
|
2019-11-29 20:13:03 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|