- {items.map((item) =>
- item.children != null && item.children.length > 0 ? (
+
);
diff --git a/apps/portal/src/components/offers/OffersNavigation.ts b/apps/portal/src/components/offers/OffersNavigation.ts
index e3746453..a1974d94 100644
--- a/apps/portal/src/components/offers/OffersNavigation.ts
+++ b/apps/portal/src/components/offers/OffersNavigation.ts
@@ -9,6 +9,7 @@ const config = {
navigation,
showGlobalNav: false,
title: 'Tech Offers Repo',
+ titleHref: '/offers',
};
export default config;
diff --git a/apps/portal/src/components/questions/QuestionBankTitle.tsx b/apps/portal/src/components/questions/QuestionBankTitle.tsx
deleted file mode 100644
index 133ea3e1..00000000
--- a/apps/portal/src/components/questions/QuestionBankTitle.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-export default function QuestionBankTitle() {
- return (
-
Interview Questions
- );
-}
diff --git a/apps/portal/src/components/questions/QuestionsNavigation.ts b/apps/portal/src/components/questions/QuestionsNavigation.ts
index 0c5a6c43..457845bb 100644
--- a/apps/portal/src/components/questions/QuestionsNavigation.ts
+++ b/apps/portal/src/components/questions/QuestionsNavigation.ts
@@ -1,7 +1,6 @@
import type { ProductNavigationItems } from '~/components/global/ProductNavigation';
const navigation: ProductNavigationItems = [
- { href: '/questions', name: 'Home' },
{ href: '/questions', name: 'My Lists' },
{ href: '/questions', name: 'My Questions' },
{ href: '/questions', name: 'History' },
@@ -11,6 +10,7 @@ const config = {
navigation,
showGlobalNav: false,
title: 'Questions Bank',
+ titleHref: '/questions',
};
export default config;
diff --git a/apps/portal/src/components/resumes/ResumesNavigation.ts b/apps/portal/src/components/resumes/ResumesNavigation.ts
index fd16cde0..52570cf3 100644
--- a/apps/portal/src/components/resumes/ResumesNavigation.ts
+++ b/apps/portal/src/components/resumes/ResumesNavigation.ts
@@ -11,6 +11,7 @@ const navigation: ProductNavigationItems = [
children: [],
href: 'https://www.techinterviewhandbook.org/resume/',
name: 'Resume Guide',
+ target: '_blank',
},
];
@@ -18,6 +19,7 @@ const config = {
navigation,
showGlobalNav: false,
title: 'Resumes',
+ titleHref: '/resumes',
};
export default config;