frontend client for gemstone. decentralised workplace app
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: basic top bar

serenity 8e613fd3 9893e1a1

+12
+2
src/app/(protected)/_layout.tsx
··· 1 1 import { SessionGate } from "@/components/Auth/SessionGate"; 2 + import { TopBar } from "@/components/Navigation/TopBar"; 2 3 import { Stack } from "@/components/primitives/Stack"; 3 4 import { AuthedProviders } from "@/providers/authed"; 4 5 ··· 6 7 return ( 7 8 <SessionGate> 8 9 <AuthedProviders> 10 + <TopBar /> 9 11 <Stack /> 10 12 </AuthedProviders> 11 13 </SessionGate>
+10
src/components/Navigation/TopBar.tsx
··· 1 + import { GmstnLogoColor } from "@/components/icons/gmstn/GmstnLogoColor"; 2 + import { View } from "react-native"; 3 + 4 + export const TopBar = () => { 5 + return ( 6 + <View style={{ padding: 8, paddingLeft: 12, paddingTop: 12 }}> 7 + <GmstnLogoColor height={36} width={36} /> 8 + </View> 9 + ); 10 + };