frontend client for gemstone. decentralised workplace app

refactor: top bar logo redirect to home

serenity 137574c7 3276dcae

Changed files
+6 -3
src
components
Navigation
+6 -3
src/components/Navigation/TopBar.tsx
···
import { GmstnLogoColor } from "@/components/icons/gmstn/GmstnLogoColor";
+
import { Link } from "expo-router";
import { View } from "react-native";
export const TopBar = () => {
return (
-
<View style={{ padding: 8, paddingLeft: 12, paddingTop: 12 }}>
-
<GmstnLogoColor height={36} width={36} />
-
</View>
+
<Link href="/">
+
<View style={{ padding: 8, paddingLeft: 12, paddingTop: 12 }}>
+
<GmstnLogoColor height={36} width={36} />
+
</View>
+
</Link>
);
};