Skip to content

Commit

Permalink
feat: optimize images
Browse files Browse the repository at this point in the history
  • Loading branch information
Tschonti committed Dec 14, 2024
1 parent ab7e186 commit 5567c57
Show file tree
Hide file tree
Showing 16 changed files with 7 additions and 7 deletions.
Binary file removed public/disputed_pattern.png
Binary file not shown.
Binary file removed public/menu_conflicts.png
Binary file not shown.
Binary file added public/menu_conflicts.webp
Binary file not shown.
Binary file removed public/menu_fcs.png
Binary file not shown.
Binary file added public/menu_fcs.webp
Binary file not shown.
Binary file removed public/menu_hazards.png
Binary file not shown.
Binary file added public/menu_hazards.webp
Binary file not shown.
Binary file removed public/menu_ipc.png
Binary file not shown.
Binary file added public/menu_ipc.webp
Binary file not shown.
Binary file removed public/menu_ndvi.png
Binary file not shown.
Binary file added public/menu_ndvi.webp
Binary file not shown.
Binary file removed public/menu_nutri.png
Binary file not shown.
Binary file added public/menu_nutri.webp
Binary file not shown.
Binary file removed public/menu_rainfall.png
Binary file not shown.
Binary file added public/menu_rainfall.webp
Binary file not shown.
14 changes: 7 additions & 7 deletions src/operations/sidebar/SidebarOperations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,27 @@ export class SidebarOperations {
{
key: GlobalInsight.FOOD,
label: 'Food consumption',
icon: '/menu_fcs.png',
icon: '/menu_fcs.webp',
},
{
key: GlobalInsight.NUTRITION,
label: 'Nutrition',
icon: '/menu_nutri.png',
icon: '/menu_nutri.webp',
},
{
key: GlobalInsight.VEGETATION,
label: 'Vegetation',
icon: '/menu_ndvi.png',
icon: '/menu_ndvi.webp',
},
{
key: GlobalInsight.RAINFALL,
label: 'Rainfall',
icon: '/menu_rainfall.png',
icon: '/menu_rainfall.webp',
},
{
key: GlobalInsight.IPC,
label: 'IPC/CH',
icon: '/menu_ipc.png',
icon: '/menu_ipc.webp',
},
];
}
Expand All @@ -50,12 +50,12 @@ export class SidebarOperations {
{
key: AlertType.HAZARDS,
label: 'Hazards',
icon: '/menu_hazards.png',
icon: '/menu_hazards.webp',
},
{
key: AlertType.CONFLICTS,
label: 'Conflicts',
icon: '/menu_conflicts.png',
icon: '/menu_conflicts.webp',
},
];

Expand Down

0 comments on commit 5567c57

Please sign in to comment.