54 lines
1.5 KiB
Vue
54 lines
1.5 KiB
Vue
<template>
|
|
<TopBarLayout back-target="/" title="Projects">
|
|
<div class="max-w-160 mx-auto">
|
|
<LinkCardList :links="projects"/>
|
|
</div>
|
|
</TopBarLayout>
|
|
</template>
|
|
|
|
<style module>
|
|
|
|
</style>
|
|
|
|
<script lang="ts">
|
|
import TopBarLayout from "../components/TopBarLayout.vue"
|
|
import ArrowRightIcon from "~icons/ph/arrow-right"
|
|
import LinkCardList, { Link } from "../components/LinkCardList.vue"
|
|
|
|
export default {
|
|
name: "ProjectsPage",
|
|
components: { LinkCardList, TopBarLayout, ArrowRightIcon },
|
|
setup() {
|
|
const projects: Link[] = [
|
|
{
|
|
label: "JamRSS",
|
|
description: "An RSS reader app for Android, built with Jetpack\u00A0Compose.",
|
|
href: "https://github.com/moritzruth/JamRSS#jamrss",
|
|
icon: "🍓"
|
|
},
|
|
{
|
|
label: "Status Page Finder",
|
|
description: "Enter the name of a service and get a link to its status page.",
|
|
href: "https://statuspages.moritzruth.de",
|
|
icon: "🟢"
|
|
},
|
|
{
|
|
label: "License chooser",
|
|
description: "Helps you choose the license of your next open-source project.",
|
|
href: "https://licenses.moritzruth.de",
|
|
icon: "📜"
|
|
},
|
|
{
|
|
label: "node-enttec-open-dmx-usb",
|
|
description: "A Node.js library for interacting with the Enttec Open DMX USB Interface.",
|
|
href: "https://github.com/moritzruth/node-enttec-open-dmx-usb",
|
|
icon: "💡"
|
|
}
|
|
]
|
|
|
|
return {
|
|
projects
|
|
}
|
|
}
|
|
}
|
|
</script>
|