Skip to content

Commit

Permalink
chore: update curriculum hyperlink
Browse files Browse the repository at this point in the history
  • Loading branch information
ruilopesm committed Nov 20, 2024
1 parent 4839a2f commit 35172d6
Show file tree
Hide file tree
Showing 2 changed files with 238 additions and 5 deletions.
231 changes: 231 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 7 additions & 5 deletions packages/ui/components/landing/Header/config.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
export const MENU_ENTRIES = [
{ key: "/web/curriculum", text: "Currículo" },
type MenuEntry = {
key: string;
text: string;
};

export const MENU_ENTRIES: MenuEntry[] = [
{ key: "https://coderdojobraga.notion.site", text: "Currículo" },
{ key: "/web/recruitment", text: "Recrutamento" },
// { path: "/projects", text: "Projetos" },
{ key: "/web/team", text: "Equipa" },
// { key: "/web/hall-of-fame", text: "Hall of Fame" },
{ key: "/web/faqs", text: "Faqs" },
//{ key: "/web/dojocon", text: "DojoCon" },
{ key: "/blog", text: "Blog" },
];

0 comments on commit 35172d6

Please sign in to comment.