diff --git a/src/assets/icons/rs.svg b/src/assets/icons/rs.svg
new file mode 100644
index 0000000..893976e
--- /dev/null
+++ b/src/assets/icons/rs.svg
@@ -0,0 +1,16 @@
+
\ No newline at end of file
diff --git a/src/assets/wave.gif b/src/assets/wave.gif
new file mode 100644
index 0000000..3e91093
Binary files /dev/null and b/src/assets/wave.gif differ
diff --git a/src/components/NavBar.tsx b/src/components/NavBar.tsx
index c13fbc4..280616c 100644
--- a/src/components/NavBar.tsx
+++ b/src/components/NavBar.tsx
@@ -2,10 +2,11 @@ import mutiny_m from '~/assets/icons/m.svg';
import airplane from '~/assets/icons/airplane.svg';
import settings from '~/assets/icons/settings.svg';
import receive from '~/assets/icons/big-receive.svg';
+import redshift from '~/assets/icons/rs.svg';
import { A } from "solid-start";
-type ActiveTab = 'home' | 'scan' | 'send' | 'receive' | 'settings' | 'none';
+type ActiveTab = 'home' | 'scan' | 'send' | 'receive' | 'settings' | 'redshift' | 'none';
export default function NavBar(props: { activeTab: ActiveTab }) {
const activeStyle = 'border-t-0 border-b-0 p-2 bg-black rounded-lg'
@@ -33,6 +34,11 @@ export default function NavBar(props: { activeTab: ActiveTab }) {
+