frontend client for gemstone. decentralised workplace app
2
fork

Configure Feed

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

feat: invite route

serenity d1fda020 3511b004

+8
+5
src/app/(protected)/invites.tsx
··· 1 + const InviteRoute = () => { 2 + return <></>; 3 + }; 4 + 5 + export default InviteRoute;
+3
src/components/Navigation/TopBar/ProfileModalContent.tsx
··· 29 29 <Link href="/profile" style={listItemStyles} asChild> 30 30 <LinkText label="Profile" /> 31 31 </Link> 32 + <Link href="/invites" style={listItemStyles} asChild> 33 + <LinkText label="Invites" /> 34 + </Link> 32 35 <Link href="/settings" style={listItemStyles} asChild> 33 36 <LinkText label="Settings" /> 34 37 </Link>