diff --git a/Archive.zip b/Archive.zip new file mode 100644 index 0000000..8181363 Binary files /dev/null and b/Archive.zip differ diff --git a/dist.zip b/dist.zip deleted file mode 100644 index b42ef66..0000000 Binary files a/dist.zip and /dev/null differ diff --git a/src/App.jsx b/src/App.jsx index 8c0bdae..1243e4f 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,5 +1,6 @@ import { useState } from 'react'; import TimeSheet from './components/TimeSheet'; +import Help from './Help'; import ThemeToggle from './components/ThemeToggle'; import MiniCalendar from './components/MiniCalendar'; import { useTheme } from './hooks/useTheme'; @@ -10,14 +11,15 @@ function App() { const { isDark, toggleTheme } = useTheme(); const timesheetData = useTimeSheet(); const [showMobileCalendar, setShowMobileCalendar] = useState(false); + const [showHelp, setShowHelp] = useState(false); return (