Skip to content

Commit

Permalink
comment out unimplemented pages
Browse files Browse the repository at this point in the history
  • Loading branch information
CrysR committed Feb 24, 2025
1 parent 9c18923 commit 3453c51
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions resources/js/Layouts/AppLayout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ var navigationAboveLine = [
children: [
{ name: 'Upload Data', href: route('file-upload') },
{ name: 'Start Prediction', href: route('run-inference') },
{ name: 'File Management', href: route('file-management')},
// TODO: uncomment once we have this implemented.
// { name: 'File Management', href: route('file-management')},
],
},
{
Expand Down Expand Up @@ -98,28 +99,28 @@ var navigationAboveLine = [
},
],
},
{
/*{
name: 'Data Dictionary',
href: route('data-dictionary'),
icon: BookOpenIcon,
visibility_type: VisibilityType.BOTH,
},
},*/
];

const navigationBelowLine = [
{
/*{
name: 'FAQ',
href: route('FAQ'),
icon: DocumentDuplicateIcon,
visibility_type: VisibilityType.BOTH,
},
},*/
{
name: 'Logout',
href: route('logout'),
icon: ArrowRightStartOnRectangleIcon,
visibility_type: VisibilityType.PRIVATE_ONLY,
},
{
/*{
name: 'Contact Us',
href: '#',
icon: PhoneIcon,
Expand All @@ -130,7 +131,7 @@ const navigationBelowLine = [
href: '#',
icon: InformationCircleIcon,
visibility_type: VisibilityType.PUBLIC_ONLY,
},
},*/
];


Expand Down

0 comments on commit 3453c51

Please sign in to comment.