diff --git a/apps/manacore/apps/web/src/routes/(app)/+layout.svelte b/apps/manacore/apps/web/src/routes/(app)/+layout.svelte
index 3c36b15d8..76427f9ea 100644
--- a/apps/manacore/apps/web/src/routes/(app)/+layout.svelte
+++ b/apps/manacore/apps/web/src/routes/(app)/+layout.svelte
@@ -53,6 +53,7 @@
// Navigation items for ManaCore
const navItems: PillNavItem[] = [
{ href: '/dashboard', label: 'Dashboard', icon: 'home' },
+ { href: '/mana', label: 'Mana', icon: 'fire' },
{ href: '/credits', label: 'Credits', icon: 'creditCard' },
{ href: '/feedback', label: 'Feedback', icon: 'chat' },
{ href: '/profile', label: 'Profil', icon: 'user' },
diff --git a/apps/manacore/apps/web/src/routes/(app)/mana/+page.svelte b/apps/manacore/apps/web/src/routes/(app)/mana/+page.svelte
index 01ca44d69..dc73c0c2b 100644
--- a/apps/manacore/apps/web/src/routes/(app)/mana/+page.svelte
+++ b/apps/manacore/apps/web/src/routes/(app)/mana/+page.svelte
@@ -2,17 +2,38 @@
import { SubscriptionPage } from '@manacore/shared-subscription-ui';
function handleSubscribe(planId: string) {
- alert(`Subscribe to plan: ${planId}\n\nThis would trigger RevenueCat purchase flow.`);
+ console.log('Subscribe to plan:', planId);
+ alert(`Abo "${planId}" ausgewählt. Bezahlsystem wird noch integriert.`);
}
function handleBuyPackage(packageId: string) {
- alert(`Buy package: ${packageId}\n\nThis would trigger RevenueCat purchase flow.`);
+ console.log('Buy package:', packageId);
+ alert(`Paket "${packageId}" ausgewählt. Bezahlsystem wird noch integriert.`);
}
-