diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 0a61ded..5fb5e94 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -16,6 +16,8 @@ import ManageLabels from './components/ManageLabels'; import ManageSort from './components/ManageSort'; import milestonesCache from './utils/milestonesCache'; import labelsCache, { clearLabelsCache } from './utils/labelsCache'; +import iconImage from './assets/icon.png'; +import './icon.css'; const App = () => { // Initialize with cached data if available @@ -149,22 +151,48 @@ const App = () => { return ( - +
- - {projectLoading - ? 'Loading...' - : project - ? `${project.app_name}: ${project.github_repo}` - : 'GitHub Project Manager'} - +
+ Application icon + + {projectLoading + ? 'Loading...' + : project + ? `${project.app_name}: ${project.github_repo}` + : 'GitHub Project Manager'} + +