2020-08-05 14:38:23 +00:00
|
|
|
<template>
|
|
|
|
<div class="page">
|
2021-01-09 20:03:31 +00:00
|
|
|
<PageHeader imageType="cue-mei">
|
2020-12-26 09:50:33 +00:00
|
|
|
<h1>nanao.moe Blog</h1>
|
|
|
|
<p>
|
|
|
|
<a href="https://blog.nanao.moe">live</a>
|
|
|
|
•
|
|
|
|
<a href="https://github.com/Damillora/Yuika">source code</a>
|
|
|
|
</p>
|
|
|
|
</PageHeader>
|
|
|
|
<main class="container mx-auto main">
|
|
|
|
<h2>Description</h2>
|
|
|
|
<p>
|
|
|
|
The nanao.moe blog is my hobby-related blog, writing about games and idols.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
The blog runs on Ghost, a publication-focused CMS, while the theme uses Tailwind CSS for its CSS framework.
|
|
|
|
</p>
|
|
|
|
<h2>Technologies</h2>
|
|
|
|
<ul>
|
|
|
|
<li>Ghost</li>
|
|
|
|
<li>Tailwind CSS</li>
|
|
|
|
<li>jQuery</li>
|
|
|
|
</ul>
|
|
|
|
<h2>Screenshots</h2>
|
|
|
|
<div class="gallery">
|
|
|
|
<GalleryImage :src="require('~/assets/projects/yuika/1.png')" />
|
|
|
|
<GalleryImage :src="require('~/assets/projects/yuika/2.png')" />
|
|
|
|
<GalleryImage :src="require('~/assets/projects/yuika/3.png')" />
|
|
|
|
<GalleryImage :src="require('~/assets/projects/yuika/4.png')" />
|
|
|
|
<GalleryImage :src="require('~/assets/projects/yuika/5.png')" />
|
|
|
|
<GalleryImage :src="require('~/assets/projects/yuika/6.png')" />
|
|
|
|
</div>
|
2020-08-05 14:38:23 +00:00
|
|
|
|
2020-12-26 09:50:33 +00:00
|
|
|
</main>
|
2020-08-05 14:38:23 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import ProjectItem from "@/components/ProjectItem";
|
2020-12-26 09:50:33 +00:00
|
|
|
import PageHeader from "@/components/PageHeader";
|
2020-08-05 14:38:23 +00:00
|
|
|
import GalleryImage from '@/components/GalleryImage';
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
ProjectItem,
|
2020-12-26 09:50:33 +00:00
|
|
|
PageHeader,
|
2020-08-05 14:38:23 +00:00
|
|
|
GalleryImage
|
|
|
|
},
|
2020-11-09 11:16:34 +00:00
|
|
|
head: {
|
2020-08-05 14:38:23 +00:00
|
|
|
title: "Project Portfolio",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.card-list {
|
|
|
|
@apply flex flex-col;
|
|
|
|
}
|
|
|
|
</style>
|