diff --git a/apps/portal/public/favicon.ico b/apps/portal/public/favicon.ico
index d3b456c0..2b50a782 100644
Binary files a/apps/portal/public/favicon.ico and b/apps/portal/public/favicon.ico differ
diff --git a/apps/portal/src/components/global/AppShell.tsx b/apps/portal/src/components/global/AppShell.tsx
index fde9d3b6..c94c1f58 100644
--- a/apps/portal/src/components/global/AppShell.tsx
+++ b/apps/portal/src/components/global/AppShell.tsx
@@ -1,5 +1,6 @@
import clsx from 'clsx';
import Link from 'next/link';
+import { useRouter } from 'next/router';
import { signIn, signOut, useSession } from 'next-auth/react';
import type { ReactNode } from 'react';
import { Fragment, useState } from 'react';
@@ -13,6 +14,14 @@ import {
XMarkIcon,
} from '@heroicons/react/24/outline';
+import HomeNavigation from '~/components/global/HomeNavigation';
+import OffersNavigation from '~/components/offers/OffersNavigation';
+import QuestionsNavigation from '~/components/questions/QuestionsNavigation';
+import ResumesNavigation from '~/components/resumes/ResumesNavigation';
+
+import type { ProductNavigationItems } from './ProductNavigation';
+import ProductNavigation from './ProductNavigation';
+
const sidebarNavigation = [
{ current: false, href: '/', icon: HomeIcon, name: 'Home' },
{ current: false, href: '/resumes', icon: DocumentTextIcon, name: 'Resumes' },
@@ -39,14 +48,15 @@ function ProfileJewel() {
if (session == null) {
return (
- {
event.preventDefault();
signIn();
}}>
Sign in
-
+
);
}
@@ -65,7 +75,7 @@ function ProfileJewel() {
return (