diff --git a/src/components/Navbar/index.tsx b/src/components/Navbar/index.tsx index 51cd78d..076674e 100644 --- a/src/components/Navbar/index.tsx +++ b/src/components/Navbar/index.tsx @@ -44,6 +44,60 @@ const Navbar = () => { )} + {role === 'developer' && ( + <> + + Projects + + + Templates + + + Features + + + Categories + + + )} + {role === 'productOwner' && ( + <> + + Projects + + + Templates + + + )}
diff --git a/src/components/Navbar/styles.ts b/src/components/Navbar/styles.ts index 45ad407..a2d1530 100644 --- a/src/components/Navbar/styles.ts +++ b/src/components/Navbar/styles.ts @@ -30,7 +30,7 @@ export const Wrapper = styled.div` flex-grow: 1; margin-left: 60px; display: grid; - grid-template-columns: repeat(3, auto); + grid-template-columns: repeat(4, auto); column-gap: 20px; justify-content: flex-start; }