drop old app & fix homepage js
All checks were successful
Deploy App / deploy (push) Successful in 1m28s
All checks were successful
Deploy App / deploy (push) Successful in 1m28s
This commit is contained in:
@@ -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>
|
||||
|
Reference in New Issue
Block a user