Refactor StorageSettings to use SettingsLayout and improve layout structure; add ThemeSettings component; update TermsView with new terms and structure; enhance ThingsView styling; clean up AddTaskModal by removing experimental feature chip; create CalendarCard component for calendar overview; optimize CustomParsers for repeat parsing; update NavBar for improved navigation and search parameter handling.

This commit is contained in:
Mo Tarbin
2025-09-11 01:17:27 -04:00
parent b152da9d21
commit 43decb21f4
38 changed files with 2934 additions and 1388 deletions

View File

@@ -0,0 +1,12 @@
import NotificationSetting from './NotificationSetting'
import SettingsLayout from './SettingsLayout'
const NotificationSettings = () => {
return (
<SettingsLayout title="Notification Settings">
<NotificationSetting />
</SettingsLayout>
)
}
export default NotificationSettings