+
+
{{ t('libra.balance.title') }}
+
diff --git a/src/activities-app/App.vue b/src/activities-app/App.vue
index b7ff6d6..7214093 100644
--- a/src/activities-app/App.vue
+++ b/src/activities-app/App.vue
@@ -1,38 +1,84 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/chat-app/App.vue b/src/chat-app/App.vue
index e902645..6e5a91d 100644
--- a/src/chat-app/App.vue
+++ b/src/chat-app/App.vue
@@ -1,16 +1,47 @@
-
+
diff --git a/src/components/layout/BottomNav.vue b/src/components/layout/BottomNav.vue
index f52ba44..e74b67d 100644
--- a/src/components/layout/BottomNav.vue
+++ b/src/components/layout/BottomNav.vue
@@ -8,16 +8,10 @@ export interface BottomTab {
name: string
/** lucide-vue-next icon component. */
icon: Component
- /** Router path to push on click. Optional — coming-soon entries omit it. */
- path?: string
+ /** Router path to push on click. */
+ path: string
/** Optional unread/cart badge count. Falsy values hide the badge. */
badge?: number | null
- /** Click override. When provided, replaces the default router.push(path).
- * Consumers use this for coming-soon toasts or auth-gated CTAs. */
- onClick?: () => void
- /** Render the entry ghosted (opacity-reduced). Used for coming-soon and
- * for auth-required tabs when the user is logged out. */
- disabled?: boolean
}
interface Props {
@@ -34,14 +28,6 @@ interface Props {
const props = withDefaults(defineProps
(), { loggedOutOpensSheet: false })
const router = useRouter()
-
-function onTabClick(tab: BottomTab) {
- if (tab.onClick) {
- tab.onClick()
- return
- }
- if (tab.path) router.push(tab.path)
-}
@@ -53,16 +39,13 @@ function onTabClick(tab: BottomTab) {
+
+
+
+
+
+