2019-11-29 20:13:03 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<footer>
|
2020-01-30 06:11:24 +00:00
|
|
|
<FooterNav
|
|
|
|
link="/about"
|
|
|
|
icon="person"
|
|
|
|
text="about"
|
|
|
|
/>
|
|
|
|
<FooterNav
|
|
|
|
link="/games"
|
|
|
|
icon="videogame_asset"
|
|
|
|
text="game profile"
|
|
|
|
/>
|
|
|
|
<FooterNav
|
|
|
|
link="/sns"
|
|
|
|
icon="contacts"
|
|
|
|
text="social media"
|
|
|
|
/>
|
|
|
|
<FooterNav
|
|
|
|
link="//blog.nanao.moe"
|
|
|
|
icon="rss_feed"
|
|
|
|
text="blog"
|
|
|
|
external="true"
|
|
|
|
/>
|
2019-11-29 20:13:03 +00:00
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-01-30 06:11:24 +00:00
|
|
|
import FooterNav from "./FooterNav";
|
2019-11-29 20:13:03 +00:00
|
|
|
|
2020-01-30 06:11:24 +00:00
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
FooterNav
|
|
|
|
},
|
2019-11-29 20:13:03 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
footer {
|
2020-01-29 16:13:04 +00:00
|
|
|
@apply h-16 w-full flex flex-row justify-start items-center;
|
2019-11-29 20:13:03 +00:00
|
|
|
}
|
2020-01-30 06:11:24 +00:00
|
|
|
@screen md {
|
|
|
|
.footer-nav p {
|
|
|
|
@apply text-base;
|
|
|
|
}
|
2019-11-29 20:13:03 +00:00
|
|
|
}
|
|
|
|
</style>
|