FEAT: title & links on pre-configured listed apps

This commit is contained in:
prosety
2022-12-01 12:52:36 +01:00
parent 59cb40c2e2
commit bbbae155f1
3 changed files with 5 additions and 9 deletions

View File

@@ -18,12 +18,14 @@
<template>
<section>
<h2 class="text-3xl text-center">
<h2 class="title">
Pre-configured applications
</h2>
<ul class="flex justify-center p-4 m-4 max-w-full flex-wrap">
<li v-for="app in apps" class="m-4">
<component :is="app" class="app" />
<a :href="('https://github.com/valerebron/pegaz/tree/master/services/'+app.toLowerCase())" :title="app">
<component :is="app" class="app" />
</a>
</li>
</ul>
</section>