drop old app & fix homepage js
All checks were successful
Deploy App / deploy (push) Successful in 1m28s

This commit is contained in:
valere
2025-08-29 16:24:52 +02:00
parent f0e2aa237a
commit 342a7a7e0a
2 changed files with 23 additions and 75 deletions

View File

@@ -6,18 +6,10 @@ export default {
name: 'Transmission',
component: resolveComponent('SvgTransmission')
},
{
name: 'Drone',
component: resolveComponent('SvgDrone')
},
{
name: 'Gitea',
component: resolveComponent('SvgGitea')
},
{
name: 'Hoppscotch',
component: resolveComponent('SvgHoppscotch')
},
{
name: 'Jellyfin',
component: resolveComponent('SvgJellyfin')
@@ -25,14 +17,6 @@ export default {
{
name: 'Nextcloud',
component: resolveComponent('SvgNextcloud')
},
{
name: 'Plausible',
component: resolveComponent('SvgPlausible')
},
{
name: 'Penpot',
component: resolveComponent('SvgPenpot')
}
]
})
@@ -46,13 +30,9 @@ export default {
</h2>
<ul class="flex justify-center p-2 max-w-full flex-wrap">
<li v-for="app in apps" :key="app" class="m-4">
<a
:href="
'https://github.com/docker-web/docker-web/tree/master/apps/' +
app.name.toLowerCase()
"
:title="app.name"
>
<a :href="'https://github.com/docker-web/docker-web/tree/master/apps/' +
app.name.toLowerCase()
" :title="app.name">
<component :is="app.component" class="app hover:scale-110" />
</a>
</li>