chore: remove /apps route — not needed

The standalone /apps page (AppsPage from shared-ui) is redundant in the
workbench model — apps are discoverable via the app picker and scene
management directly on the home screen.

- Delete routes/(app)/apps/+page.svelte
- Remove command menu "Alle Apps" entry
- Drop allAppsHref prop from PillNavigation

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-04-16 12:30:37 +02:00
parent 27ac5fc23e
commit 95e65bbdcb
2 changed files with 0 additions and 16 deletions

View file

@ -746,7 +746,6 @@
category: 'Navigation',
onExecute: () => goto('/?app=credits'),
},
{ id: 'apps', label: 'Alle Apps', category: 'Navigation', onExecute: () => goto('/apps') },
{
id: 'settings',
label: 'Einstellungen',
@ -988,7 +987,6 @@
creditsHref="/?app=credits"
themesHref="/?app=themes"
helpHref="/?app=help"
allAppsHref="/apps"
{spotlightActions}
{contentSearcher}
positioning="static"

View file

@ -1,14 +0,0 @@
<script lang="ts">
import { AppsPage } from '@mana/shared-ui';
</script>
<div class="apps-page-wrapper">
<AppsPage currentAppId="mana" locale="de" title="Alle Apps" />
</div>
<style>
.apps-page-wrapper {
background-color: hsl(var(--color-background));
min-height: 100%;
}
</style>