1
0
Fork 0
moritzruth.de/pages/projects.vue
2019-11-30 23:14:40 +01:00

40 lines
1 KiB
Vue

<template>
<div class="projects-page">
<NavigationBar show-background title="Projects"/>
<h1 class="heading--1">
Projects
</h1>
<GProject
type="App"
title="RelaxYourEyes"
link="https://relaxyoureyes.moritz-ruth.de"
github="moritzruth/relaxyoureyes"
>
A timer which reminds you to relax your eyes every 20 minutes.
</GProject>
<GProject
type="Website"
title="cryptic-game.net"
link="https://test.cryptic-game.net"
github="cryptic-game/website/tree/vueWebsite"
>
I am responsible for the new (not yet released) website of the
<a class="link" href="https://github.com/cryptic-game">Cryptic game</a>.
(Just the website, not the game itself)
</GProject>
</div>
</template>
<style scoped lang="scss">
</style>
<script>
import NavigationBar from "@/components/NavigationBar";
import GProject from "@/components/pages/projects/GProject";
export default {
name: "ProjectsPage",
components: { GProject, NavigationBar }
};
</script>