diff --git a/infrastructure/eid-wallet/src/routes/(auth)/e-passport/+page.svelte b/infrastructure/eid-wallet/src/routes/(auth)/e-passport/+page.svelte index d8ae1848..7f8e3dfd 100644 --- a/infrastructure/eid-wallet/src/routes/(auth)/e-passport/+page.svelte +++ b/infrastructure/eid-wallet/src/routes/(auth)/e-passport/+page.svelte @@ -9,28 +9,33 @@ const handleFinish = async () => { }; - -
+
+ -

Your eVault

-

We’ve also created your eVault—secure cloud storage for your personal data. W3DS platforms access it directly, keeping you in control.

- +

+ We’ve also created your eVault—secure cloud storage for your + personal data. W3DS platforms access it directly, keeping you in + control. +

+
Finish -
\ No newline at end of file +
diff --git a/platforms/metagram/src/lib/fragments/BottomNav/BottomNav.svelte b/platforms/metagram/src/lib/fragments/BottomNav/BottomNav.svelte index 42f62179..6175ec8b 100644 --- a/platforms/metagram/src/lib/fragments/BottomNav/BottomNav.svelte +++ b/platforms/metagram/src/lib/fragments/BottomNav/BottomNav.svelte @@ -14,20 +14,18 @@ profileSrc = 'https://picsum.photos/200' }: IBottomNavProps = $props(); - const tabs = ['home', 'discover', 'post', 'messages', 'profile']; + const tabs = ['home', 'discover', 'post', 'messages', 'profile', 'settings']; let previousTab = $state('home'); let _activeTab = $derived(page.url.pathname); + let fullPath = $derived(page.url.pathname); const handleNavClick = (newTab: string) => { // activeTab = newTab; isNavigatingThroughNav.value = true; - const fromIndex = tabs.indexOf(previousTab); const toIndex = tabs.indexOf(newTab); - const direction = toIndex > fromIndex ? 'right' : 'left'; document.documentElement.setAttribute('data-transition', direction); - previousTab = newTab; goto(`/${newTab}`); }; @@ -40,7 +38,7 @@