miracle/pages/projects/index.vue

30 lines
739 B
Vue
Raw Normal View History

2020-08-05 14:38:23 +00:00
<template>
<div class="page">
<h1 class="title">Project Portfolio</h1>
2020-08-05 14:42:53 +00:00
<p>I build applications in my spare time, but currently only some are published / live right now</p>
2020-08-05 14:38:23 +00:00
<div class="card-list">
2020-08-05 14:42:53 +00:00
<ProjectItem name="nanao.moe" codename="miracle" description="The home page for my online identity." />
2020-08-05 14:38:23 +00:00
<ProjectItem name="nanao.moe Blog" codename="yuika" description="The blog for my hobbies" />
</div>
</div>
</template>
<script>
import ProjectItem from "@/components/ProjectItem";
export default {
components: {
ProjectItem,
},
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>