├── .gitignore ├── .npmrc ├── README.md ├── app ├── [locale] │ ├── (auth) │ │ ├── layout.tsx │ │ ├── sign-in │ │ │ └── page.tsx │ │ └── sign-up │ │ │ └── page.tsx │ ├── dashboard │ │ ├── assigned-to-me │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── calendar │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── invite │ │ │ └── [invite_code] │ │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── loading.tsx │ │ ├── page.tsx │ │ ├── pomodoro │ │ │ ├── loading.tsx │ │ │ ├── page.tsx │ │ │ └── settings │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ ├── settings │ │ │ ├── page.tsx │ │ │ ├── security │ │ │ │ └── page.tsx │ │ │ ├── theme │ │ │ │ └── page.tsx │ │ │ └── workspace │ │ │ │ ├── [workspace_id] │ │ │ │ └── page.tsx │ │ │ │ └── loading.tsx │ │ ├── starred │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ └── workspace │ │ │ ├── [workspace_id] │ │ │ ├── chat │ │ │ │ └── [chat_id] │ │ │ │ │ ├── loading.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── mind-maps │ │ │ │ └── mind-map │ │ │ │ │ └── [mind_map_id] │ │ │ │ │ ├── edit │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── loading.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ └── tasks │ │ │ │ └── task │ │ │ │ └── [task_id] │ │ │ │ ├── edit │ │ │ │ └── page.tsx │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ │ └── loading.tsx │ ├── globals.css │ ├── layout.tsx │ ├── not-found.tsx │ ├── onboarding │ │ ├── layout.tsx │ │ └── page.tsx │ └── page.tsx ├── api │ ├── assigned_to │ │ ├── get │ │ │ └── route.ts │ │ ├── mind_maps │ │ │ ├── assign │ │ │ │ └── route.ts │ │ │ └── get │ │ │ │ └── route.ts │ │ └── tasks │ │ │ ├── assign │ │ │ └── route.ts │ │ │ └── get │ │ │ └── route.ts │ ├── auth │ │ ├── [...nextauth] │ │ │ └── route.ts │ │ └── register │ │ │ └── route.ts │ ├── calendar │ │ └── get │ │ │ └── route.ts │ ├── conversation │ │ ├── delete_message │ │ │ └── route.ts │ │ ├── get │ │ │ ├── initial_messages │ │ │ │ └── route.ts │ │ │ └── new_message │ │ │ │ └── route.ts │ │ ├── new_message │ │ │ └── route.ts │ │ └── update │ │ │ └── route.ts │ ├── home-page │ │ └── get │ │ │ └── route.ts │ ├── mind_maps │ │ ├── delete │ │ │ └── route.ts │ │ ├── get │ │ │ └── details │ │ │ │ └── [mind_map_id] │ │ │ │ └── route.ts │ │ ├── new │ │ │ └── route.ts │ │ └── update │ │ │ ├── route.ts │ │ │ ├── tags │ │ │ └── route.ts │ │ │ └── title_and_emoji │ │ │ └── route.ts │ ├── notifications │ │ ├── get │ │ │ └── route.ts │ │ ├── set-click │ │ │ ├── all │ │ │ │ └── route.ts │ │ │ └── by-id │ │ │ │ └── route.ts │ │ └── set-seen │ │ │ └── route.ts │ ├── onboarding │ │ └── route.ts │ ├── pomodoro │ │ ├── get_settings │ │ │ └── route.ts │ │ └── update │ │ │ └── route.ts │ ├── profile │ │ ├── change_password │ │ │ └── route.ts │ │ ├── delete │ │ │ └── route.ts │ │ ├── delete_profile_image │ │ │ └── route.ts │ │ ├── edit │ │ │ └── route.ts │ │ └── profileImage │ │ │ └── route.ts │ ├── saved │ │ ├── get │ │ │ └── route.ts │ │ ├── mind_maps │ │ │ └── toggle_mind_map │ │ │ │ └── route.ts │ │ └── tasks │ │ │ └── toggleTask │ │ │ └── route.ts │ ├── tags │ │ ├── delete_tag │ │ │ └── route.ts │ │ ├── edit_tag │ │ │ └── route.ts │ │ ├── get │ │ │ └── get_workspace_tags │ │ │ │ └── route.ts │ │ └── new_tag │ │ │ └── route.ts │ ├── task │ │ ├── create_short_task │ │ │ └── route.ts │ │ ├── delete │ │ │ └── route.ts │ │ ├── get │ │ │ └── details │ │ │ │ └── [task_id] │ │ │ │ └── route.ts │ │ ├── new │ │ │ └── route.ts │ │ └── update │ │ │ ├── active_tags │ │ │ └── route.ts │ │ │ ├── content │ │ │ └── route.ts │ │ │ ├── date │ │ │ └── route.ts │ │ │ ├── emoji │ │ │ └── route.ts │ │ │ └── title │ │ │ └── route.ts │ ├── uploadthing │ │ ├── core.ts │ │ └── route.ts │ ├── users │ │ └── get-users │ │ │ └── route.ts │ └── workspace │ │ ├── delete │ │ ├── picture │ │ │ └── route.ts │ │ └── workspace │ │ │ └── route.ts │ │ ├── edit │ │ ├── data │ │ │ └── route.ts │ │ └── picture │ │ │ └── route.ts │ │ ├── get │ │ ├── settings │ │ │ └── [workspace_id] │ │ │ │ └── route.ts │ │ ├── user_admin_workspaces │ │ │ └── route.ts │ │ ├── user_editable_workspaces │ │ │ └── route.ts │ │ ├── user_role │ │ │ └── route.ts │ │ ├── user_workspaces │ │ │ └── route.ts │ │ ├── workspace_details │ │ │ └── [workspace_id] │ │ │ │ └── route.ts │ │ ├── workspace_home_page │ │ │ └── route.ts │ │ ├── workspace_shortcuts │ │ │ └── route.ts │ │ └── workspace_with_chat │ │ │ └── [workspace_id] │ │ │ └── route.ts │ │ ├── invite │ │ └── regenerate_link │ │ │ └── route.ts │ │ ├── leave │ │ └── route.ts │ │ ├── new │ │ └── route.ts │ │ └── users │ │ ├── edit_role │ │ └── route.ts │ │ └── remove │ │ └── route.ts ├── favicon.ico ├── fonts │ ├── GeistMonoVF.woff │ └── GeistVF.woff └── page.tsx ├── components.json ├── components ├── addTaskShortCut │ ├── ActiveWorkspaceInfo.tsx │ ├── AddTaskShortcut.tsx │ ├── CalendarTask.tsx │ ├── MainTab.tsx │ ├── SelectWorkspace.tsx │ └── Workspaces.tsx ├── assigned-to-me │ ├── AssignedToMeContainer.tsx │ └── AssignedToMeItem.tsx ├── auth │ ├── AuthCard.tsx │ ├── ProviderSignInBtn.tsx │ ├── ProviderSignInBtns.tsx │ ├── SignInCardContent.tsx │ └── SignUpCardContent.tsx ├── calendar │ ├── Calendar.tsx │ ├── CalendarGrid.tsx │ ├── CalendarHeader.tsx │ ├── CalendarTask.tsx │ ├── CalendarTasks.tsx │ ├── Day.tsx │ └── ShowMore.tsx ├── chat │ ├── ChatContainer.tsx │ ├── header │ │ └── Header.tsx │ ├── messages │ │ ├── AdditionalResource.tsx │ │ ├── DeleteMessage.tsx │ │ ├── EditMessage.tsx │ │ ├── EditedBadge.tsx │ │ ├── LoadMoreMessages.tsx │ │ ├── Message.tsx │ │ ├── MessagesContainer.tsx │ │ ├── Options.tsx │ │ └── ScrollDown.tsx │ └── newMessage │ │ ├── FilePreview.tsx │ │ ├── NewMessageContainer.tsx │ │ └── UploadFileButton.tsx ├── common │ ├── CreatedWorkspacesInfo.tsx │ ├── EmojiSelector.tsx │ ├── LoadingScreen.tsx │ ├── ReadOnlyEmoji.tsx │ ├── StarSvg.tsx │ ├── UserHoverInfoCard.tsx │ ├── Welcoming.tsx │ └── tag │ │ ├── CommandContainer.tsx │ │ ├── CommandTagItem.tsx │ │ ├── CreateNewTagorEditTag.tsx │ │ └── TagSelector.tsx ├── error │ └── ClientError.tsx ├── header │ ├── BackBtn.tsx │ ├── BreadcrumbNav.tsx │ ├── DashboardHeader.tsx │ ├── OpenSidebar.tsx │ ├── SavingStatus.tsx │ └── User.tsx ├── home │ ├── HomePage.tsx │ ├── carousel │ │ └── ImagesCarousel.tsx │ ├── footer │ │ └── Footer.tsx │ ├── header │ │ ├── Header.tsx │ │ └── HeaderLink.tsx │ ├── nav │ │ ├── LargeNav.tsx │ │ ├── MobileNav.tsx │ │ └── Nav.tsx │ ├── section │ │ ├── Section.tsx │ │ └── TextSection.tsx │ └── video │ │ └── VideoContainer.tsx ├── homeRecentActivity │ ├── HomeRecentActivityContainer.tsx │ └── HomeRecentActivityItem.tsx ├── inviteUsers │ ├── InviteContent.tsx │ └── InviteUsers.tsx ├── mindMaps │ ├── DeleteAllNodes.tsx │ ├── EdgeOptions.tsx │ ├── MindMap.tsx │ ├── MindMapTagSelector.tsx │ ├── assignToMindMap │ │ ├── AssignedToMindMapSelector.tsx │ │ ├── CommandContainer.tsx │ │ └── CommandUser.tsx │ ├── editInfo │ │ ├── ChangeEmoji.tsx │ │ └── EditInfo.tsx │ ├── labels │ │ ├── CustomBezier.tsx │ │ ├── CustomStepRounded.tsx │ │ ├── CustomStepSharp.tsx │ │ ├── CustomStraight.tsx │ │ └── EdgeLabel.tsx │ ├── nodes │ │ ├── NodeWrapper.tsx │ │ └── TextNode.tsx │ └── preview │ │ ├── MindMapCardPreviewOptions.tsx │ │ └── MindMapPreviewCardWrapper.tsx ├── notifications │ ├── NotificationContainer.tsx │ └── NotificationItem.tsx ├── onboarding │ ├── AdditionalInfoSection.tsx │ ├── FormStepsInfo.tsx │ ├── SummarySection.tsx │ ├── common │ │ ├── AddUserImage.tsx │ │ └── UploadFile.tsx │ └── steps │ │ ├── Finish.tsx │ │ ├── FirstStep.tsx │ │ ├── SecondStep.tsx │ │ └── ThirdStep.tsx ├── pomodoro │ ├── SettingsContainer.tsx │ ├── SettingsForm.tsx │ └── timer │ │ └── PomodoroContainer.tsx ├── settings │ ├── account │ │ ├── AccountInfo.tsx │ │ ├── DeleteAccount.tsx │ │ └── Heading.tsx │ ├── security │ │ ├── ChangePassword.tsx │ │ └── SecurityCard.tsx │ ├── theme │ │ ├── Theme.tsx │ │ └── ThemeCard.tsx │ └── workspace │ │ ├── WorkspaceTab.tsx │ │ ├── members │ │ ├── MembersCard.tsx │ │ ├── MembersTable.tsx │ │ └── Row │ │ │ ├── MembersRow.tsx │ │ │ ├── MoreOptions.tsx │ │ │ └── UserPermission.tsx │ │ └── overview │ │ ├── DeleteWorkspace.tsx │ │ └── Edit │ │ ├── EditWorkspaceCard.tsx │ │ ├── EditWorkspaceDataForm.tsx │ │ └── EditWorkspaceImage.tsx ├── sidebar │ ├── CloseSidebar.tsx │ ├── Sidebar.tsx │ ├── SidebarContainer.tsx │ ├── optionsSidebar │ │ ├── OptionsSidebar.tsx │ │ ├── assignedToMeFilter │ │ │ ├── AssignedToMeFilter.tsx │ │ │ └── AssignedToMeWorkspace.tsx │ │ ├── pomodoro │ │ │ └── PomodoroLinks.tsx │ │ ├── settingsOptions │ │ │ ├── Settings.tsx │ │ │ └── SettingsWorkspace.tsx │ │ └── workspaceOptions │ │ │ ├── WorkspaceOption.tsx │ │ │ ├── WorkspaceOptions.tsx │ │ │ ├── actions │ │ │ ├── NewMindMap.tsx │ │ │ └── NewTask.tsx │ │ │ └── usersList │ │ │ ├── UserStatus.tsx │ │ │ ├── UserStatusTypeList.tsx │ │ │ └── UsersContainer.tsx │ └── shortcutSidebar │ │ ├── Bottom.tsx │ │ ├── ShortcutSidebar.tsx │ │ ├── SidebarLink.tsx │ │ ├── Top.tsx │ │ ├── newWorkspace │ │ ├── AddWorkspace.tsx │ │ └── AddWorkspaceForm.tsx │ │ └── workspaces │ │ ├── Workspace.tsx │ │ └── Workspaces.tsx ├── starred │ ├── NoStarredItems.tsx │ ├── SortSelect.tsx │ ├── StarredContainer.tsx │ └── StarredItem.tsx ├── svg │ ├── AppleLogo.tsx │ ├── GithubLogo.tsx │ ├── GoogleLogo.tsx │ └── StarredItemsList.tsx ├── switchers │ ├── LocaleSwitcher.tsx │ └── ThemeSwitcher.tsx ├── tasks │ ├── assignToTask │ │ ├── AssignedToTaskSelector.tsx │ │ ├── CommandContainer.tsx │ │ └── CommandUser.tsx │ ├── editable │ │ ├── container │ │ │ ├── Emoji.tsx │ │ │ ├── TaskCalendar.tsx │ │ │ └── TaskContainer.tsx │ │ ├── editor │ │ │ ├── Editor.tsx │ │ │ └── tools │ │ │ │ ├── AddLink.tsx │ │ │ │ ├── FloatingContainer.tsx │ │ │ │ ├── ToolsContainer.tsx │ │ │ │ ├── addImage │ │ │ │ ├── AddImage.tsx │ │ │ │ ├── AddImageByImport.tsx │ │ │ │ └── AddImageByLink.tsx │ │ │ │ └── btn │ │ │ │ └── OptionBtn.tsx │ │ └── tag │ │ │ └── LinkTag.tsx │ ├── newTask │ │ └── NewTask.tsx │ └── readOnly │ │ ├── ReadOnlyCalendar.tsx │ │ ├── ReadOnlyContent.tsx │ │ └── TaskOptions.tsx ├── ui │ ├── active-link.tsx │ ├── alert-dialog.tsx │ ├── app-title.tsx │ ├── aspect-ratio.tsx │ ├── badge.tsx │ ├── button.tsx │ ├── calendar.tsx │ ├── card.tsx │ ├── carousel.tsx │ ├── checkbox.tsx │ ├── command.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── hover-card.tsx │ ├── input.tsx │ ├── label.tsx │ ├── loadingState.tsx │ ├── navigation-menu.tsx │ ├── popover.tsx │ ├── radio-group.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── slider.tsx │ ├── tabs.tsx │ ├── toast.tsx │ ├── toaster.tsx │ ├── user-avatar.tsx │ └── warning.tsx └── workspaceMainPage │ ├── filter │ ├── Clear.tsx │ ├── Filter.tsx │ ├── FilterCommand │ │ ├── CommandContainer.tsx │ │ ├── CommandTagItem.tsx │ │ └── CommandUserItem.tsx │ ├── FilterContainer.tsx │ └── activeFilteredUsersAndTags │ │ ├── ActiveFilteredTag.tsx │ │ └── ActiveFilteredUser.tsx │ ├── recentActivity │ ├── AssignedToTaskUser.tsx │ ├── NoData.tsx │ ├── NoFilteredData.tsx │ ├── RecentActivityContainer.tsx │ ├── RecentActivityItem.tsx │ └── TagItem.tsx │ └── shortcuts │ ├── ShortcutContainer.tsx │ ├── ShortcutContainerBtnItem.tsx │ ├── ShortcutContainerLinkItem.tsx │ ├── leaveWorkspace │ └── LeaveWorkspace.tsx │ ├── permissionIndicator │ └── Permissionindicator.tsx │ └── privateMessagesDialog │ └── ShortcutContainerItemPrivateMessageDialog.tsx ├── context ├── AutoSaveMindMap.tsx ├── AutosaveIndicator.tsx ├── FilterByUsersAndTagsInWorkspace.tsx ├── OnboardingForm.tsx ├── ToggleSidebar.tsx ├── UserActivityStatus.tsx └── UserEditableWorkspaces.tsx ├── docker-compose.yml ├── env.example ├── hooks ├── react_flow │ └── useOnEditNode.tsx ├── use-toast.ts ├── useChangeCodeToEmoji.tsx ├── useChangeLocale.tsx ├── useCreateNotifyItemDay.tsx ├── useGetAssignedToMeParams.tsx ├── useIsVisible.tsx ├── useNewMindMap.tsx ├── useNewTask.tsx ├── useOnClickOutside.tsx ├── useOnKeyDown.tsx ├── useProviderLoginError.tsx ├── useTags.tsx ├── useTruncateText.tsx └── useUnstarItem.tsx ├── i18n.ts ├── lib ├── api.ts ├── auth.ts ├── changeCodeToEmoji.ts ├── checkIfUserCompletedOnboarding.ts ├── compareDates.ts ├── constants.ts ├── db.ts ├── getRandomWorkspaceColor.ts ├── options.ts ├── sortMindMapsAndTasksDataByUpdatedAt.ts ├── supabase.ts ├── uploadthing.ts └── utils.ts ├── messages ├── en.json └── te.json ├── middleware.ts ├── next.config.js ├── package.json ├── postcss.config.mjs ├── prisma ├── migrations │ ├── 20241029020744_initial │ │ └── migration.sql │ ├── 20241029045142_added_username_to_user_table │ │ └── migration.sql │ ├── 20241029075301_added_completed_onboarding_to_user │ │ └── migration.sql │ ├── 20241029093728_added_workspace_subscription_models │ │ └── migration.sql │ ├── 20241030055654_added_image_to_workspace │ │ └── migration.sql │ ├── 20241031051316_added_color_to_workspace │ │ └── migration.sql │ ├── 20241031064051_added_owner_role │ │ └── migration.sql │ ├── 20241031125950_added_invite_codes_to_workspace │ │ └── migration.sql │ ├── 20241031130155_updated_invite_codes_to_workspace │ │ └── migration.sql │ ├── 20241101044332_added_task_and_tag_table │ │ └── migration.sql │ ├── 20241101055550_updated_tag_to_workspace │ │ └── migration.sql │ ├── 20241103064138_added_date_to_task │ │ └── migration.sql │ ├── 20241104005926_added_saved_task_model │ │ └── migration.sql │ ├── 20241105004928_changed_emoji_to_hexcode │ │ └── migration.sql │ ├── 20241106111257_added_mindmap_table │ │ └── migration.sql │ ├── 20241107030508_added_relationship_to_tags_mindmaps │ │ └── migration.sql │ ├── 20241107103001_added_emoji_to_mindmap │ │ └── migration.sql │ ├── 20241108014438_added_saved_mindmaps_model │ │ └── migration.sql │ ├── 20241108025908_renamed_date_to_taskdate │ │ └── migration.sql │ ├── 20241108100935_added_pomodoro_model │ │ └── migration.sql │ ├── 20241108120112_added_sound_effect_to_pomodoro │ │ └── migration.sql │ ├── 20241109023737_added_assigned_to_models │ │ └── migration.sql │ ├── 20241109044503_updated_taskid_to_mindmapid │ │ └── migration.sql │ ├── 20241110045403_added_last_time_active_to_user_model │ │ └── migration.sql │ ├── 20241110061911_added_notification_model │ │ └── migration.sql │ ├── 20241110070215_renamed_unseen_to_seen │ │ └── migration.sql │ ├── 20241111133136_added_chat_related_models │ │ └── migration.sql │ ├── 20241112023247_added_updated_at_to_message_model │ │ └── migration.sql │ ├── 20241113012702_removed_lasttimeactive_from_user_model │ │ └── migration.sql │ ├── 20241113025155_added_ondelete_cascades │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── providers ├── AuthProvider.tsx ├── QueryProvider.tsx └── ThemeProvider.tsx ├── public ├── file.svg ├── globe.svg ├── images │ ├── accountSettingsBlack.png │ ├── accountSettingsWhite.png │ ├── accountSettingsWithImageBlack.png │ ├── assignedToMeBlack.png │ ├── assignedToMeWhite.png │ ├── calendarPage.png │ ├── calendarWhite.png │ ├── createShortcutTaskBlack.png │ ├── createShortcutTaskWhite.png │ ├── dashboardBlack.png │ ├── dashboardWhite.png │ ├── groupChat.png │ ├── groupChatAndNotificationsBlack.png │ ├── groupChatBlack.png │ ├── groupChatEditMessageBlack.png │ ├── groupChatFileUploadBlack.png │ ├── groupChatFileViewBlack.png │ ├── groupChatNewMessageBlack.png │ ├── groupChatNewMessageWhite.png │ ├── groupChatWhite.png │ ├── mindMapEditBlack.png │ ├── mindMapEditEdgeOptionsBlack.png │ ├── mindMapEditTagsBlack.png │ ├── mindMapEditWhite.png │ ├── mindMapPreviewBlack.png │ ├── mindMapPreviewWhite.png │ ├── pomodoroBlack.png │ ├── pomodoroSettingsBlack.png │ ├── pomodoroSettingsWhite.png │ ├── pomodoroWhite.png │ ├── starredItemsBlack.png │ ├── starredItemsWhite.png │ ├── taskContentAddImageByLinkBlack.png │ ├── taskContentAddImageFromDeviceBlack.png │ ├── taskContentBlack.png │ ├── taskContentEditorOptionsBlack.png │ ├── uploadAccountImageBlack.png │ ├── workspaceMainPageFiltersBlack.png │ ├── workspaceMainPageFiltersWhite.png │ ├── workspaceMainpage.png │ ├── workspaceMembersBlack.png │ └── workspaceSettingsBlack.png ├── music │ ├── analog.mp3 │ ├── bell.mp3 │ ├── bird.mp3 │ ├── churchBell.mp3 │ ├── digital.mp3 │ └── fancy.mp3 ├── next.svg ├── vercel.svg └── window.svg ├── schema ├── accountInfoSettingsSchema.ts ├── additionalUserInfo.ts ├── additionalUserInfoFirstPart.ts ├── changePasswordSchema.ts ├── deleteAccountSchema.ts ├── deleteUserFromWorkspaceSchema.ts ├── edgeOptionsSchema.ts ├── editUserRoleSchema.ts ├── imageSchema.ts ├── linkSchema.ts ├── messageSchema.ts ├── mindMapSchema.ts ├── nodesSchema.ts ├── onboardingSchema.ts ├── pomodoroSettingsSchema.ts ├── shortTaskSchema.ts ├── signInSchema.ts ├── signUpSchema.ts ├── tagSchema.ts ├── taskSchema.ts ├── updateTaskSchema.ts └── workspaceSchema.ts ├── store └── conversation │ └── messages.ts ├── tailwind.config.ts ├── tsconfig.json └── types ├── auth.ts ├── enums.ts ├── extended.ts ├── onBoardingContext.ts ├── props.ts ├── saved.ts └── supabase.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/README.md -------------------------------------------------------------------------------- /app/[locale]/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/(auth)/layout.tsx -------------------------------------------------------------------------------- /app/[locale]/(auth)/sign-in/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/(auth)/sign-in/page.tsx -------------------------------------------------------------------------------- /app/[locale]/(auth)/sign-up/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/(auth)/sign-up/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/assigned-to-me/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/assigned-to-me/loading.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/assigned-to-me/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/assigned-to-me/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/calendar/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/calendar/loading.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/calendar/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/calendar/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/invite/[invite_code]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/invite/[invite_code]/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/layout.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/loading.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/pomodoro/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/pomodoro/loading.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/pomodoro/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/pomodoro/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/pomodoro/settings/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/pomodoro/settings/loading.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/pomodoro/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/pomodoro/settings/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/settings/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/settings/security/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/settings/security/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/settings/theme/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/settings/theme/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/settings/workspace/[workspace_id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/settings/workspace/[workspace_id]/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/settings/workspace/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/settings/workspace/loading.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/starred/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/starred/loading.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/starred/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/starred/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/workspace/[workspace_id]/chat/[chat_id]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/workspace/[workspace_id]/chat/[chat_id]/loading.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/workspace/[workspace_id]/chat/[chat_id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/workspace/[workspace_id]/chat/[chat_id]/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/workspace/[workspace_id]/mind-maps/mind-map/[mind_map_id]/edit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/workspace/[workspace_id]/mind-maps/mind-map/[mind_map_id]/edit/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/workspace/[workspace_id]/mind-maps/mind-map/[mind_map_id]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/workspace/[workspace_id]/mind-maps/mind-map/[mind_map_id]/loading.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/workspace/[workspace_id]/mind-maps/mind-map/[mind_map_id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/workspace/[workspace_id]/mind-maps/mind-map/[mind_map_id]/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/workspace/[workspace_id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/workspace/[workspace_id]/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/workspace/[workspace_id]/tasks/task/[task_id]/edit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/workspace/[workspace_id]/tasks/task/[task_id]/edit/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/workspace/[workspace_id]/tasks/task/[task_id]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/workspace/[workspace_id]/tasks/task/[task_id]/loading.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/workspace/[workspace_id]/tasks/task/[task_id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/workspace/[workspace_id]/tasks/task/[task_id]/page.tsx -------------------------------------------------------------------------------- /app/[locale]/dashboard/workspace/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/dashboard/workspace/loading.tsx -------------------------------------------------------------------------------- /app/[locale]/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/globals.css -------------------------------------------------------------------------------- /app/[locale]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/layout.tsx -------------------------------------------------------------------------------- /app/[locale]/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/not-found.tsx -------------------------------------------------------------------------------- /app/[locale]/onboarding/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/onboarding/layout.tsx -------------------------------------------------------------------------------- /app/[locale]/onboarding/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/onboarding/page.tsx -------------------------------------------------------------------------------- /app/[locale]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/[locale]/page.tsx -------------------------------------------------------------------------------- /app/api/assigned_to/get/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/assigned_to/get/route.ts -------------------------------------------------------------------------------- /app/api/assigned_to/mind_maps/assign/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/assigned_to/mind_maps/assign/route.ts -------------------------------------------------------------------------------- /app/api/assigned_to/mind_maps/get/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/assigned_to/mind_maps/get/route.ts -------------------------------------------------------------------------------- /app/api/assigned_to/tasks/assign/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/assigned_to/tasks/assign/route.ts -------------------------------------------------------------------------------- /app/api/assigned_to/tasks/get/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/assigned_to/tasks/get/route.ts -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /app/api/auth/register/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/auth/register/route.ts -------------------------------------------------------------------------------- /app/api/calendar/get/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/calendar/get/route.ts -------------------------------------------------------------------------------- /app/api/conversation/delete_message/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/conversation/delete_message/route.ts -------------------------------------------------------------------------------- /app/api/conversation/get/initial_messages/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/conversation/get/initial_messages/route.ts -------------------------------------------------------------------------------- /app/api/conversation/get/new_message/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/conversation/get/new_message/route.ts -------------------------------------------------------------------------------- /app/api/conversation/new_message/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/conversation/new_message/route.ts -------------------------------------------------------------------------------- /app/api/conversation/update/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/conversation/update/route.ts -------------------------------------------------------------------------------- /app/api/home-page/get/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/home-page/get/route.ts -------------------------------------------------------------------------------- /app/api/mind_maps/delete/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/mind_maps/delete/route.ts -------------------------------------------------------------------------------- /app/api/mind_maps/get/details/[mind_map_id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/mind_maps/get/details/[mind_map_id]/route.ts -------------------------------------------------------------------------------- /app/api/mind_maps/new/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/mind_maps/new/route.ts -------------------------------------------------------------------------------- /app/api/mind_maps/update/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/mind_maps/update/route.ts -------------------------------------------------------------------------------- /app/api/mind_maps/update/tags/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/mind_maps/update/tags/route.ts -------------------------------------------------------------------------------- /app/api/mind_maps/update/title_and_emoji/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/mind_maps/update/title_and_emoji/route.ts -------------------------------------------------------------------------------- /app/api/notifications/get/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/notifications/get/route.ts -------------------------------------------------------------------------------- /app/api/notifications/set-click/all/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/notifications/set-click/all/route.ts -------------------------------------------------------------------------------- /app/api/notifications/set-click/by-id/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/notifications/set-click/by-id/route.ts -------------------------------------------------------------------------------- /app/api/notifications/set-seen/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/notifications/set-seen/route.ts -------------------------------------------------------------------------------- /app/api/onboarding/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/onboarding/route.ts -------------------------------------------------------------------------------- /app/api/pomodoro/get_settings/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/pomodoro/get_settings/route.ts -------------------------------------------------------------------------------- /app/api/pomodoro/update/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/pomodoro/update/route.ts -------------------------------------------------------------------------------- /app/api/profile/change_password/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/profile/change_password/route.ts -------------------------------------------------------------------------------- /app/api/profile/delete/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/profile/delete/route.ts -------------------------------------------------------------------------------- /app/api/profile/delete_profile_image/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/profile/delete_profile_image/route.ts -------------------------------------------------------------------------------- /app/api/profile/edit/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/profile/edit/route.ts -------------------------------------------------------------------------------- /app/api/profile/profileImage/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/profile/profileImage/route.ts -------------------------------------------------------------------------------- /app/api/saved/get/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/saved/get/route.ts -------------------------------------------------------------------------------- /app/api/saved/mind_maps/toggle_mind_map/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/saved/mind_maps/toggle_mind_map/route.ts -------------------------------------------------------------------------------- /app/api/saved/tasks/toggleTask/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/saved/tasks/toggleTask/route.ts -------------------------------------------------------------------------------- /app/api/tags/delete_tag/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/tags/delete_tag/route.ts -------------------------------------------------------------------------------- /app/api/tags/edit_tag/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/tags/edit_tag/route.ts -------------------------------------------------------------------------------- /app/api/tags/get/get_workspace_tags/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/tags/get/get_workspace_tags/route.ts -------------------------------------------------------------------------------- /app/api/tags/new_tag/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/tags/new_tag/route.ts -------------------------------------------------------------------------------- /app/api/task/create_short_task/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/task/create_short_task/route.ts -------------------------------------------------------------------------------- /app/api/task/delete/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/task/delete/route.ts -------------------------------------------------------------------------------- /app/api/task/get/details/[task_id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/task/get/details/[task_id]/route.ts -------------------------------------------------------------------------------- /app/api/task/new/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/task/new/route.ts -------------------------------------------------------------------------------- /app/api/task/update/active_tags/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/task/update/active_tags/route.ts -------------------------------------------------------------------------------- /app/api/task/update/content/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/task/update/content/route.ts -------------------------------------------------------------------------------- /app/api/task/update/date/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/task/update/date/route.ts -------------------------------------------------------------------------------- /app/api/task/update/emoji/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/task/update/emoji/route.ts -------------------------------------------------------------------------------- /app/api/task/update/title/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/task/update/title/route.ts -------------------------------------------------------------------------------- /app/api/uploadthing/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/uploadthing/core.ts -------------------------------------------------------------------------------- /app/api/uploadthing/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/uploadthing/route.ts -------------------------------------------------------------------------------- /app/api/users/get-users/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/users/get-users/route.ts -------------------------------------------------------------------------------- /app/api/workspace/delete/picture/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/delete/picture/route.ts -------------------------------------------------------------------------------- /app/api/workspace/delete/workspace/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/delete/workspace/route.ts -------------------------------------------------------------------------------- /app/api/workspace/edit/data/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/edit/data/route.ts -------------------------------------------------------------------------------- /app/api/workspace/edit/picture/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/edit/picture/route.ts -------------------------------------------------------------------------------- /app/api/workspace/get/settings/[workspace_id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/get/settings/[workspace_id]/route.ts -------------------------------------------------------------------------------- /app/api/workspace/get/user_admin_workspaces/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/get/user_admin_workspaces/route.ts -------------------------------------------------------------------------------- /app/api/workspace/get/user_editable_workspaces/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/get/user_editable_workspaces/route.ts -------------------------------------------------------------------------------- /app/api/workspace/get/user_role/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/get/user_role/route.ts -------------------------------------------------------------------------------- /app/api/workspace/get/user_workspaces/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/get/user_workspaces/route.ts -------------------------------------------------------------------------------- /app/api/workspace/get/workspace_details/[workspace_id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/get/workspace_details/[workspace_id]/route.ts -------------------------------------------------------------------------------- /app/api/workspace/get/workspace_home_page/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/get/workspace_home_page/route.ts -------------------------------------------------------------------------------- /app/api/workspace/get/workspace_shortcuts/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/get/workspace_shortcuts/route.ts -------------------------------------------------------------------------------- /app/api/workspace/get/workspace_with_chat/[workspace_id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/get/workspace_with_chat/[workspace_id]/route.ts -------------------------------------------------------------------------------- /app/api/workspace/invite/regenerate_link/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/invite/regenerate_link/route.ts -------------------------------------------------------------------------------- /app/api/workspace/leave/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/leave/route.ts -------------------------------------------------------------------------------- /app/api/workspace/new/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/new/route.ts -------------------------------------------------------------------------------- /app/api/workspace/users/edit_role/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/users/edit_role/route.ts -------------------------------------------------------------------------------- /app/api/workspace/users/remove/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/api/workspace/users/remove/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components.json -------------------------------------------------------------------------------- /components/addTaskShortCut/ActiveWorkspaceInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/addTaskShortCut/ActiveWorkspaceInfo.tsx -------------------------------------------------------------------------------- /components/addTaskShortCut/AddTaskShortcut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/addTaskShortCut/AddTaskShortcut.tsx -------------------------------------------------------------------------------- /components/addTaskShortCut/CalendarTask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/addTaskShortCut/CalendarTask.tsx -------------------------------------------------------------------------------- /components/addTaskShortCut/MainTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/addTaskShortCut/MainTab.tsx -------------------------------------------------------------------------------- /components/addTaskShortCut/SelectWorkspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/addTaskShortCut/SelectWorkspace.tsx -------------------------------------------------------------------------------- /components/addTaskShortCut/Workspaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/addTaskShortCut/Workspaces.tsx -------------------------------------------------------------------------------- /components/assigned-to-me/AssignedToMeContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/assigned-to-me/AssignedToMeContainer.tsx -------------------------------------------------------------------------------- /components/assigned-to-me/AssignedToMeItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/assigned-to-me/AssignedToMeItem.tsx -------------------------------------------------------------------------------- /components/auth/AuthCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/auth/AuthCard.tsx -------------------------------------------------------------------------------- /components/auth/ProviderSignInBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/auth/ProviderSignInBtn.tsx -------------------------------------------------------------------------------- /components/auth/ProviderSignInBtns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/auth/ProviderSignInBtns.tsx -------------------------------------------------------------------------------- /components/auth/SignInCardContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/auth/SignInCardContent.tsx -------------------------------------------------------------------------------- /components/auth/SignUpCardContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/auth/SignUpCardContent.tsx -------------------------------------------------------------------------------- /components/calendar/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/calendar/Calendar.tsx -------------------------------------------------------------------------------- /components/calendar/CalendarGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/calendar/CalendarGrid.tsx -------------------------------------------------------------------------------- /components/calendar/CalendarHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/calendar/CalendarHeader.tsx -------------------------------------------------------------------------------- /components/calendar/CalendarTask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/calendar/CalendarTask.tsx -------------------------------------------------------------------------------- /components/calendar/CalendarTasks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/calendar/CalendarTasks.tsx -------------------------------------------------------------------------------- /components/calendar/Day.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/calendar/Day.tsx -------------------------------------------------------------------------------- /components/calendar/ShowMore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/calendar/ShowMore.tsx -------------------------------------------------------------------------------- /components/chat/ChatContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/chat/ChatContainer.tsx -------------------------------------------------------------------------------- /components/chat/header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/chat/header/Header.tsx -------------------------------------------------------------------------------- /components/chat/messages/AdditionalResource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/chat/messages/AdditionalResource.tsx -------------------------------------------------------------------------------- /components/chat/messages/DeleteMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/chat/messages/DeleteMessage.tsx -------------------------------------------------------------------------------- /components/chat/messages/EditMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/chat/messages/EditMessage.tsx -------------------------------------------------------------------------------- /components/chat/messages/EditedBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/chat/messages/EditedBadge.tsx -------------------------------------------------------------------------------- /components/chat/messages/LoadMoreMessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/chat/messages/LoadMoreMessages.tsx -------------------------------------------------------------------------------- /components/chat/messages/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/chat/messages/Message.tsx -------------------------------------------------------------------------------- /components/chat/messages/MessagesContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/chat/messages/MessagesContainer.tsx -------------------------------------------------------------------------------- /components/chat/messages/Options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/chat/messages/Options.tsx -------------------------------------------------------------------------------- /components/chat/messages/ScrollDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/chat/messages/ScrollDown.tsx -------------------------------------------------------------------------------- /components/chat/newMessage/FilePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/chat/newMessage/FilePreview.tsx -------------------------------------------------------------------------------- /components/chat/newMessage/NewMessageContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/chat/newMessage/NewMessageContainer.tsx -------------------------------------------------------------------------------- /components/chat/newMessage/UploadFileButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/chat/newMessage/UploadFileButton.tsx -------------------------------------------------------------------------------- /components/common/CreatedWorkspacesInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/common/CreatedWorkspacesInfo.tsx -------------------------------------------------------------------------------- /components/common/EmojiSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/common/EmojiSelector.tsx -------------------------------------------------------------------------------- /components/common/LoadingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/common/LoadingScreen.tsx -------------------------------------------------------------------------------- /components/common/ReadOnlyEmoji.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/common/ReadOnlyEmoji.tsx -------------------------------------------------------------------------------- /components/common/StarSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/common/StarSvg.tsx -------------------------------------------------------------------------------- /components/common/UserHoverInfoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/common/UserHoverInfoCard.tsx -------------------------------------------------------------------------------- /components/common/Welcoming.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/common/Welcoming.tsx -------------------------------------------------------------------------------- /components/common/tag/CommandContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/common/tag/CommandContainer.tsx -------------------------------------------------------------------------------- /components/common/tag/CommandTagItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/common/tag/CommandTagItem.tsx -------------------------------------------------------------------------------- /components/common/tag/CreateNewTagorEditTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/common/tag/CreateNewTagorEditTag.tsx -------------------------------------------------------------------------------- /components/common/tag/TagSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/common/tag/TagSelector.tsx -------------------------------------------------------------------------------- /components/error/ClientError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/error/ClientError.tsx -------------------------------------------------------------------------------- /components/header/BackBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/header/BackBtn.tsx -------------------------------------------------------------------------------- /components/header/BreadcrumbNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/header/BreadcrumbNav.tsx -------------------------------------------------------------------------------- /components/header/DashboardHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/header/DashboardHeader.tsx -------------------------------------------------------------------------------- /components/header/OpenSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/header/OpenSidebar.tsx -------------------------------------------------------------------------------- /components/header/SavingStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/header/SavingStatus.tsx -------------------------------------------------------------------------------- /components/header/User.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/header/User.tsx -------------------------------------------------------------------------------- /components/home/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/home/HomePage.tsx -------------------------------------------------------------------------------- /components/home/carousel/ImagesCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/home/carousel/ImagesCarousel.tsx -------------------------------------------------------------------------------- /components/home/footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/home/footer/Footer.tsx -------------------------------------------------------------------------------- /components/home/header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/home/header/Header.tsx -------------------------------------------------------------------------------- /components/home/header/HeaderLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/home/header/HeaderLink.tsx -------------------------------------------------------------------------------- /components/home/nav/LargeNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/home/nav/LargeNav.tsx -------------------------------------------------------------------------------- /components/home/nav/MobileNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/home/nav/MobileNav.tsx -------------------------------------------------------------------------------- /components/home/nav/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/home/nav/Nav.tsx -------------------------------------------------------------------------------- /components/home/section/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/home/section/Section.tsx -------------------------------------------------------------------------------- /components/home/section/TextSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/home/section/TextSection.tsx -------------------------------------------------------------------------------- /components/home/video/VideoContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/home/video/VideoContainer.tsx -------------------------------------------------------------------------------- /components/homeRecentActivity/HomeRecentActivityContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/homeRecentActivity/HomeRecentActivityContainer.tsx -------------------------------------------------------------------------------- /components/homeRecentActivity/HomeRecentActivityItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/homeRecentActivity/HomeRecentActivityItem.tsx -------------------------------------------------------------------------------- /components/inviteUsers/InviteContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/inviteUsers/InviteContent.tsx -------------------------------------------------------------------------------- /components/inviteUsers/InviteUsers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/inviteUsers/InviteUsers.tsx -------------------------------------------------------------------------------- /components/mindMaps/DeleteAllNodes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/DeleteAllNodes.tsx -------------------------------------------------------------------------------- /components/mindMaps/EdgeOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/EdgeOptions.tsx -------------------------------------------------------------------------------- /components/mindMaps/MindMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/MindMap.tsx -------------------------------------------------------------------------------- /components/mindMaps/MindMapTagSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/MindMapTagSelector.tsx -------------------------------------------------------------------------------- /components/mindMaps/assignToMindMap/AssignedToMindMapSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/assignToMindMap/AssignedToMindMapSelector.tsx -------------------------------------------------------------------------------- /components/mindMaps/assignToMindMap/CommandContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/assignToMindMap/CommandContainer.tsx -------------------------------------------------------------------------------- /components/mindMaps/assignToMindMap/CommandUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/assignToMindMap/CommandUser.tsx -------------------------------------------------------------------------------- /components/mindMaps/editInfo/ChangeEmoji.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/editInfo/ChangeEmoji.tsx -------------------------------------------------------------------------------- /components/mindMaps/editInfo/EditInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/editInfo/EditInfo.tsx -------------------------------------------------------------------------------- /components/mindMaps/labels/CustomBezier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/labels/CustomBezier.tsx -------------------------------------------------------------------------------- /components/mindMaps/labels/CustomStepRounded.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/labels/CustomStepRounded.tsx -------------------------------------------------------------------------------- /components/mindMaps/labels/CustomStepSharp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/labels/CustomStepSharp.tsx -------------------------------------------------------------------------------- /components/mindMaps/labels/CustomStraight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/labels/CustomStraight.tsx -------------------------------------------------------------------------------- /components/mindMaps/labels/EdgeLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/labels/EdgeLabel.tsx -------------------------------------------------------------------------------- /components/mindMaps/nodes/NodeWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/nodes/NodeWrapper.tsx -------------------------------------------------------------------------------- /components/mindMaps/nodes/TextNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/nodes/TextNode.tsx -------------------------------------------------------------------------------- /components/mindMaps/preview/MindMapCardPreviewOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/preview/MindMapCardPreviewOptions.tsx -------------------------------------------------------------------------------- /components/mindMaps/preview/MindMapPreviewCardWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/mindMaps/preview/MindMapPreviewCardWrapper.tsx -------------------------------------------------------------------------------- /components/notifications/NotificationContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/notifications/NotificationContainer.tsx -------------------------------------------------------------------------------- /components/notifications/NotificationItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/notifications/NotificationItem.tsx -------------------------------------------------------------------------------- /components/onboarding/AdditionalInfoSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/onboarding/AdditionalInfoSection.tsx -------------------------------------------------------------------------------- /components/onboarding/FormStepsInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/onboarding/FormStepsInfo.tsx -------------------------------------------------------------------------------- /components/onboarding/SummarySection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/onboarding/SummarySection.tsx -------------------------------------------------------------------------------- /components/onboarding/common/AddUserImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/onboarding/common/AddUserImage.tsx -------------------------------------------------------------------------------- /components/onboarding/common/UploadFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/onboarding/common/UploadFile.tsx -------------------------------------------------------------------------------- /components/onboarding/steps/Finish.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/onboarding/steps/Finish.tsx -------------------------------------------------------------------------------- /components/onboarding/steps/FirstStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/onboarding/steps/FirstStep.tsx -------------------------------------------------------------------------------- /components/onboarding/steps/SecondStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/onboarding/steps/SecondStep.tsx -------------------------------------------------------------------------------- /components/onboarding/steps/ThirdStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/onboarding/steps/ThirdStep.tsx -------------------------------------------------------------------------------- /components/pomodoro/SettingsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/pomodoro/SettingsContainer.tsx -------------------------------------------------------------------------------- /components/pomodoro/SettingsForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/pomodoro/SettingsForm.tsx -------------------------------------------------------------------------------- /components/pomodoro/timer/PomodoroContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/pomodoro/timer/PomodoroContainer.tsx -------------------------------------------------------------------------------- /components/settings/account/AccountInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/settings/account/AccountInfo.tsx -------------------------------------------------------------------------------- /components/settings/account/DeleteAccount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/settings/account/DeleteAccount.tsx -------------------------------------------------------------------------------- /components/settings/account/Heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/settings/account/Heading.tsx -------------------------------------------------------------------------------- /components/settings/security/ChangePassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/settings/security/ChangePassword.tsx -------------------------------------------------------------------------------- /components/settings/security/SecurityCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/settings/security/SecurityCard.tsx -------------------------------------------------------------------------------- /components/settings/theme/Theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/settings/theme/Theme.tsx -------------------------------------------------------------------------------- /components/settings/theme/ThemeCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/settings/theme/ThemeCard.tsx -------------------------------------------------------------------------------- /components/settings/workspace/WorkspaceTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/settings/workspace/WorkspaceTab.tsx -------------------------------------------------------------------------------- /components/settings/workspace/members/MembersCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/settings/workspace/members/MembersCard.tsx -------------------------------------------------------------------------------- /components/settings/workspace/members/MembersTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/settings/workspace/members/MembersTable.tsx -------------------------------------------------------------------------------- /components/settings/workspace/members/Row/MembersRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/settings/workspace/members/Row/MembersRow.tsx -------------------------------------------------------------------------------- /components/settings/workspace/members/Row/MoreOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/settings/workspace/members/Row/MoreOptions.tsx -------------------------------------------------------------------------------- /components/settings/workspace/members/Row/UserPermission.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/settings/workspace/members/Row/UserPermission.tsx -------------------------------------------------------------------------------- /components/settings/workspace/overview/DeleteWorkspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/settings/workspace/overview/DeleteWorkspace.tsx -------------------------------------------------------------------------------- /components/settings/workspace/overview/Edit/EditWorkspaceCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/settings/workspace/overview/Edit/EditWorkspaceCard.tsx -------------------------------------------------------------------------------- /components/settings/workspace/overview/Edit/EditWorkspaceDataForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/settings/workspace/overview/Edit/EditWorkspaceDataForm.tsx -------------------------------------------------------------------------------- /components/settings/workspace/overview/Edit/EditWorkspaceImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/settings/workspace/overview/Edit/EditWorkspaceImage.tsx -------------------------------------------------------------------------------- /components/sidebar/CloseSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/CloseSidebar.tsx -------------------------------------------------------------------------------- /components/sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /components/sidebar/SidebarContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/SidebarContainer.tsx -------------------------------------------------------------------------------- /components/sidebar/optionsSidebar/OptionsSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/optionsSidebar/OptionsSidebar.tsx -------------------------------------------------------------------------------- /components/sidebar/optionsSidebar/assignedToMeFilter/AssignedToMeFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/optionsSidebar/assignedToMeFilter/AssignedToMeFilter.tsx -------------------------------------------------------------------------------- /components/sidebar/optionsSidebar/assignedToMeFilter/AssignedToMeWorkspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/optionsSidebar/assignedToMeFilter/AssignedToMeWorkspace.tsx -------------------------------------------------------------------------------- /components/sidebar/optionsSidebar/pomodoro/PomodoroLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/optionsSidebar/pomodoro/PomodoroLinks.tsx -------------------------------------------------------------------------------- /components/sidebar/optionsSidebar/settingsOptions/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/optionsSidebar/settingsOptions/Settings.tsx -------------------------------------------------------------------------------- /components/sidebar/optionsSidebar/settingsOptions/SettingsWorkspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/optionsSidebar/settingsOptions/SettingsWorkspace.tsx -------------------------------------------------------------------------------- /components/sidebar/optionsSidebar/workspaceOptions/WorkspaceOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/optionsSidebar/workspaceOptions/WorkspaceOption.tsx -------------------------------------------------------------------------------- /components/sidebar/optionsSidebar/workspaceOptions/WorkspaceOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/optionsSidebar/workspaceOptions/WorkspaceOptions.tsx -------------------------------------------------------------------------------- /components/sidebar/optionsSidebar/workspaceOptions/actions/NewMindMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/optionsSidebar/workspaceOptions/actions/NewMindMap.tsx -------------------------------------------------------------------------------- /components/sidebar/optionsSidebar/workspaceOptions/actions/NewTask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/optionsSidebar/workspaceOptions/actions/NewTask.tsx -------------------------------------------------------------------------------- /components/sidebar/optionsSidebar/workspaceOptions/usersList/UserStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/optionsSidebar/workspaceOptions/usersList/UserStatus.tsx -------------------------------------------------------------------------------- /components/sidebar/optionsSidebar/workspaceOptions/usersList/UserStatusTypeList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/optionsSidebar/workspaceOptions/usersList/UserStatusTypeList.tsx -------------------------------------------------------------------------------- /components/sidebar/optionsSidebar/workspaceOptions/usersList/UsersContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/optionsSidebar/workspaceOptions/usersList/UsersContainer.tsx -------------------------------------------------------------------------------- /components/sidebar/shortcutSidebar/Bottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/shortcutSidebar/Bottom.tsx -------------------------------------------------------------------------------- /components/sidebar/shortcutSidebar/ShortcutSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/shortcutSidebar/ShortcutSidebar.tsx -------------------------------------------------------------------------------- /components/sidebar/shortcutSidebar/SidebarLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/shortcutSidebar/SidebarLink.tsx -------------------------------------------------------------------------------- /components/sidebar/shortcutSidebar/Top.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/shortcutSidebar/Top.tsx -------------------------------------------------------------------------------- /components/sidebar/shortcutSidebar/newWorkspace/AddWorkspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/shortcutSidebar/newWorkspace/AddWorkspace.tsx -------------------------------------------------------------------------------- /components/sidebar/shortcutSidebar/newWorkspace/AddWorkspaceForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/shortcutSidebar/newWorkspace/AddWorkspaceForm.tsx -------------------------------------------------------------------------------- /components/sidebar/shortcutSidebar/workspaces/Workspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/shortcutSidebar/workspaces/Workspace.tsx -------------------------------------------------------------------------------- /components/sidebar/shortcutSidebar/workspaces/Workspaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/sidebar/shortcutSidebar/workspaces/Workspaces.tsx -------------------------------------------------------------------------------- /components/starred/NoStarredItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/starred/NoStarredItems.tsx -------------------------------------------------------------------------------- /components/starred/SortSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/starred/SortSelect.tsx -------------------------------------------------------------------------------- /components/starred/StarredContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/starred/StarredContainer.tsx -------------------------------------------------------------------------------- /components/starred/StarredItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/starred/StarredItem.tsx -------------------------------------------------------------------------------- /components/svg/AppleLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/svg/AppleLogo.tsx -------------------------------------------------------------------------------- /components/svg/GithubLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/svg/GithubLogo.tsx -------------------------------------------------------------------------------- /components/svg/GoogleLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/svg/GoogleLogo.tsx -------------------------------------------------------------------------------- /components/svg/StarredItemsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/svg/StarredItemsList.tsx -------------------------------------------------------------------------------- /components/switchers/LocaleSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/switchers/LocaleSwitcher.tsx -------------------------------------------------------------------------------- /components/switchers/ThemeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/switchers/ThemeSwitcher.tsx -------------------------------------------------------------------------------- /components/tasks/assignToTask/AssignedToTaskSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/assignToTask/AssignedToTaskSelector.tsx -------------------------------------------------------------------------------- /components/tasks/assignToTask/CommandContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/assignToTask/CommandContainer.tsx -------------------------------------------------------------------------------- /components/tasks/assignToTask/CommandUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/assignToTask/CommandUser.tsx -------------------------------------------------------------------------------- /components/tasks/editable/container/Emoji.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/editable/container/Emoji.tsx -------------------------------------------------------------------------------- /components/tasks/editable/container/TaskCalendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/editable/container/TaskCalendar.tsx -------------------------------------------------------------------------------- /components/tasks/editable/container/TaskContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/editable/container/TaskContainer.tsx -------------------------------------------------------------------------------- /components/tasks/editable/editor/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/editable/editor/Editor.tsx -------------------------------------------------------------------------------- /components/tasks/editable/editor/tools/AddLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/editable/editor/tools/AddLink.tsx -------------------------------------------------------------------------------- /components/tasks/editable/editor/tools/FloatingContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/editable/editor/tools/FloatingContainer.tsx -------------------------------------------------------------------------------- /components/tasks/editable/editor/tools/ToolsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/editable/editor/tools/ToolsContainer.tsx -------------------------------------------------------------------------------- /components/tasks/editable/editor/tools/addImage/AddImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/editable/editor/tools/addImage/AddImage.tsx -------------------------------------------------------------------------------- /components/tasks/editable/editor/tools/addImage/AddImageByImport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/editable/editor/tools/addImage/AddImageByImport.tsx -------------------------------------------------------------------------------- /components/tasks/editable/editor/tools/addImage/AddImageByLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/editable/editor/tools/addImage/AddImageByLink.tsx -------------------------------------------------------------------------------- /components/tasks/editable/editor/tools/btn/OptionBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/editable/editor/tools/btn/OptionBtn.tsx -------------------------------------------------------------------------------- /components/tasks/editable/tag/LinkTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/editable/tag/LinkTag.tsx -------------------------------------------------------------------------------- /components/tasks/newTask/NewTask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/newTask/NewTask.tsx -------------------------------------------------------------------------------- /components/tasks/readOnly/ReadOnlyCalendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/readOnly/ReadOnlyCalendar.tsx -------------------------------------------------------------------------------- /components/tasks/readOnly/ReadOnlyContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/readOnly/ReadOnlyContent.tsx -------------------------------------------------------------------------------- /components/tasks/readOnly/TaskOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/tasks/readOnly/TaskOptions.tsx -------------------------------------------------------------------------------- /components/ui/active-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/active-link.tsx -------------------------------------------------------------------------------- /components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /components/ui/app-title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/app-title.tsx -------------------------------------------------------------------------------- /components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/calendar.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/carousel.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/loadingState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/loadingState.tsx -------------------------------------------------------------------------------- /components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/slider.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/user-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/user-avatar.tsx -------------------------------------------------------------------------------- /components/ui/warning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/ui/warning.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/filter/Clear.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/filter/Clear.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/filter/Filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/filter/Filter.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/filter/FilterCommand/CommandContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/filter/FilterCommand/CommandContainer.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/filter/FilterCommand/CommandTagItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/filter/FilterCommand/CommandTagItem.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/filter/FilterCommand/CommandUserItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/filter/FilterCommand/CommandUserItem.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/filter/FilterContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/filter/FilterContainer.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/filter/activeFilteredUsersAndTags/ActiveFilteredTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/filter/activeFilteredUsersAndTags/ActiveFilteredTag.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/filter/activeFilteredUsersAndTags/ActiveFilteredUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/filter/activeFilteredUsersAndTags/ActiveFilteredUser.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/recentActivity/AssignedToTaskUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/recentActivity/AssignedToTaskUser.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/recentActivity/NoData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/recentActivity/NoData.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/recentActivity/NoFilteredData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/recentActivity/NoFilteredData.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/recentActivity/RecentActivityContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/recentActivity/RecentActivityContainer.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/recentActivity/RecentActivityItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/recentActivity/RecentActivityItem.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/recentActivity/TagItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/recentActivity/TagItem.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/shortcuts/ShortcutContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/shortcuts/ShortcutContainer.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/shortcuts/ShortcutContainerBtnItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/shortcuts/ShortcutContainerBtnItem.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/shortcuts/ShortcutContainerLinkItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/shortcuts/ShortcutContainerLinkItem.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/shortcuts/leaveWorkspace/LeaveWorkspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/shortcuts/leaveWorkspace/LeaveWorkspace.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/shortcuts/permissionIndicator/Permissionindicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/shortcuts/permissionIndicator/Permissionindicator.tsx -------------------------------------------------------------------------------- /components/workspaceMainPage/shortcuts/privateMessagesDialog/ShortcutContainerItemPrivateMessageDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/components/workspaceMainPage/shortcuts/privateMessagesDialog/ShortcutContainerItemPrivateMessageDialog.tsx -------------------------------------------------------------------------------- /context/AutoSaveMindMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/context/AutoSaveMindMap.tsx -------------------------------------------------------------------------------- /context/AutosaveIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/context/AutosaveIndicator.tsx -------------------------------------------------------------------------------- /context/FilterByUsersAndTagsInWorkspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/context/FilterByUsersAndTagsInWorkspace.tsx -------------------------------------------------------------------------------- /context/OnboardingForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/context/OnboardingForm.tsx -------------------------------------------------------------------------------- /context/ToggleSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/context/ToggleSidebar.tsx -------------------------------------------------------------------------------- /context/UserActivityStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/context/UserActivityStatus.tsx -------------------------------------------------------------------------------- /context/UserEditableWorkspaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/context/UserEditableWorkspaces.tsx -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/env.example -------------------------------------------------------------------------------- /hooks/react_flow/useOnEditNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/hooks/react_flow/useOnEditNode.tsx -------------------------------------------------------------------------------- /hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/hooks/use-toast.ts -------------------------------------------------------------------------------- /hooks/useChangeCodeToEmoji.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/hooks/useChangeCodeToEmoji.tsx -------------------------------------------------------------------------------- /hooks/useChangeLocale.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/hooks/useChangeLocale.tsx -------------------------------------------------------------------------------- /hooks/useCreateNotifyItemDay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/hooks/useCreateNotifyItemDay.tsx -------------------------------------------------------------------------------- /hooks/useGetAssignedToMeParams.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/hooks/useGetAssignedToMeParams.tsx -------------------------------------------------------------------------------- /hooks/useIsVisible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/hooks/useIsVisible.tsx -------------------------------------------------------------------------------- /hooks/useNewMindMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/hooks/useNewMindMap.tsx -------------------------------------------------------------------------------- /hooks/useNewTask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/hooks/useNewTask.tsx -------------------------------------------------------------------------------- /hooks/useOnClickOutside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/hooks/useOnClickOutside.tsx -------------------------------------------------------------------------------- /hooks/useOnKeyDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/hooks/useOnKeyDown.tsx -------------------------------------------------------------------------------- /hooks/useProviderLoginError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/hooks/useProviderLoginError.tsx -------------------------------------------------------------------------------- /hooks/useTags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/hooks/useTags.tsx -------------------------------------------------------------------------------- /hooks/useTruncateText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/hooks/useTruncateText.tsx -------------------------------------------------------------------------------- /hooks/useUnstarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/hooks/useUnstarItem.tsx -------------------------------------------------------------------------------- /i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/i18n.ts -------------------------------------------------------------------------------- /lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/lib/api.ts -------------------------------------------------------------------------------- /lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/lib/auth.ts -------------------------------------------------------------------------------- /lib/changeCodeToEmoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/lib/changeCodeToEmoji.ts -------------------------------------------------------------------------------- /lib/checkIfUserCompletedOnboarding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/lib/checkIfUserCompletedOnboarding.ts -------------------------------------------------------------------------------- /lib/compareDates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/lib/compareDates.ts -------------------------------------------------------------------------------- /lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/lib/constants.ts -------------------------------------------------------------------------------- /lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/lib/db.ts -------------------------------------------------------------------------------- /lib/getRandomWorkspaceColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/lib/getRandomWorkspaceColor.ts -------------------------------------------------------------------------------- /lib/options.ts: -------------------------------------------------------------------------------- 1 | export const MAX_USER_WORKSPACES = 5; 2 | -------------------------------------------------------------------------------- /lib/sortMindMapsAndTasksDataByUpdatedAt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/lib/sortMindMapsAndTasksDataByUpdatedAt.ts -------------------------------------------------------------------------------- /lib/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/lib/supabase.ts -------------------------------------------------------------------------------- /lib/uploadthing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/lib/uploadthing.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /messages/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/messages/en.json -------------------------------------------------------------------------------- /messages/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/messages/te.json -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/migrations/20241029020744_initial/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241029020744_initial/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241029045142_added_username_to_user_table/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241029045142_added_username_to_user_table/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241029075301_added_completed_onboarding_to_user/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241029075301_added_completed_onboarding_to_user/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241029093728_added_workspace_subscription_models/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241029093728_added_workspace_subscription_models/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241030055654_added_image_to_workspace/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241030055654_added_image_to_workspace/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241031051316_added_color_to_workspace/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241031051316_added_color_to_workspace/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241031064051_added_owner_role/migration.sql: -------------------------------------------------------------------------------- 1 | -- AlterEnum 2 | ALTER TYPE "UserPermission" ADD VALUE 'OWNER'; 3 | -------------------------------------------------------------------------------- /prisma/migrations/20241031125950_added_invite_codes_to_workspace/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241031125950_added_invite_codes_to_workspace/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241031130155_updated_invite_codes_to_workspace/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241031130155_updated_invite_codes_to_workspace/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241101044332_added_task_and_tag_table/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241101044332_added_task_and_tag_table/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241101055550_updated_tag_to_workspace/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241101055550_updated_tag_to_workspace/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241103064138_added_date_to_task/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241103064138_added_date_to_task/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241104005926_added_saved_task_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241104005926_added_saved_task_model/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241105004928_changed_emoji_to_hexcode/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241105004928_changed_emoji_to_hexcode/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241106111257_added_mindmap_table/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241106111257_added_mindmap_table/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241107030508_added_relationship_to_tags_mindmaps/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241107030508_added_relationship_to_tags_mindmaps/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241107103001_added_emoji_to_mindmap/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241107103001_added_emoji_to_mindmap/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241108014438_added_saved_mindmaps_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241108014438_added_saved_mindmaps_model/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241108025908_renamed_date_to_taskdate/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241108025908_renamed_date_to_taskdate/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241108100935_added_pomodoro_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241108100935_added_pomodoro_model/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241108120112_added_sound_effect_to_pomodoro/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241108120112_added_sound_effect_to_pomodoro/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241109023737_added_assigned_to_models/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241109023737_added_assigned_to_models/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241109044503_updated_taskid_to_mindmapid/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241109044503_updated_taskid_to_mindmapid/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241110045403_added_last_time_active_to_user_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241110045403_added_last_time_active_to_user_model/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241110061911_added_notification_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241110061911_added_notification_model/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241110070215_renamed_unseen_to_seen/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241110070215_renamed_unseen_to_seen/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241111133136_added_chat_related_models/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241111133136_added_chat_related_models/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241112023247_added_updated_at_to_message_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241112023247_added_updated_at_to_message_model/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241113012702_removed_lasttimeactive_from_user_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241113012702_removed_lasttimeactive_from_user_model/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241113025155_added_ondelete_cascades/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/20241113025155_added_ondelete_cascades/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /providers/AuthProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/providers/AuthProvider.tsx -------------------------------------------------------------------------------- /providers/QueryProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/providers/QueryProvider.tsx -------------------------------------------------------------------------------- /providers/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/providers/ThemeProvider.tsx -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/file.svg -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/globe.svg -------------------------------------------------------------------------------- /public/images/accountSettingsBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/accountSettingsBlack.png -------------------------------------------------------------------------------- /public/images/accountSettingsWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/accountSettingsWhite.png -------------------------------------------------------------------------------- /public/images/accountSettingsWithImageBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/accountSettingsWithImageBlack.png -------------------------------------------------------------------------------- /public/images/assignedToMeBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/assignedToMeBlack.png -------------------------------------------------------------------------------- /public/images/assignedToMeWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/assignedToMeWhite.png -------------------------------------------------------------------------------- /public/images/calendarPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/calendarPage.png -------------------------------------------------------------------------------- /public/images/calendarWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/calendarWhite.png -------------------------------------------------------------------------------- /public/images/createShortcutTaskBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/createShortcutTaskBlack.png -------------------------------------------------------------------------------- /public/images/createShortcutTaskWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/createShortcutTaskWhite.png -------------------------------------------------------------------------------- /public/images/dashboardBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/dashboardBlack.png -------------------------------------------------------------------------------- /public/images/dashboardWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/dashboardWhite.png -------------------------------------------------------------------------------- /public/images/groupChat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/groupChat.png -------------------------------------------------------------------------------- /public/images/groupChatAndNotificationsBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/groupChatAndNotificationsBlack.png -------------------------------------------------------------------------------- /public/images/groupChatBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/groupChatBlack.png -------------------------------------------------------------------------------- /public/images/groupChatEditMessageBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/groupChatEditMessageBlack.png -------------------------------------------------------------------------------- /public/images/groupChatFileUploadBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/groupChatFileUploadBlack.png -------------------------------------------------------------------------------- /public/images/groupChatFileViewBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/groupChatFileViewBlack.png -------------------------------------------------------------------------------- /public/images/groupChatNewMessageBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/groupChatNewMessageBlack.png -------------------------------------------------------------------------------- /public/images/groupChatNewMessageWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/groupChatNewMessageWhite.png -------------------------------------------------------------------------------- /public/images/groupChatWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/groupChatWhite.png -------------------------------------------------------------------------------- /public/images/mindMapEditBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/mindMapEditBlack.png -------------------------------------------------------------------------------- /public/images/mindMapEditEdgeOptionsBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/mindMapEditEdgeOptionsBlack.png -------------------------------------------------------------------------------- /public/images/mindMapEditTagsBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/mindMapEditTagsBlack.png -------------------------------------------------------------------------------- /public/images/mindMapEditWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/mindMapEditWhite.png -------------------------------------------------------------------------------- /public/images/mindMapPreviewBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/mindMapPreviewBlack.png -------------------------------------------------------------------------------- /public/images/mindMapPreviewWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/mindMapPreviewWhite.png -------------------------------------------------------------------------------- /public/images/pomodoroBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/pomodoroBlack.png -------------------------------------------------------------------------------- /public/images/pomodoroSettingsBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/pomodoroSettingsBlack.png -------------------------------------------------------------------------------- /public/images/pomodoroSettingsWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/pomodoroSettingsWhite.png -------------------------------------------------------------------------------- /public/images/pomodoroWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/pomodoroWhite.png -------------------------------------------------------------------------------- /public/images/starredItemsBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/starredItemsBlack.png -------------------------------------------------------------------------------- /public/images/starredItemsWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/starredItemsWhite.png -------------------------------------------------------------------------------- /public/images/taskContentAddImageByLinkBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/taskContentAddImageByLinkBlack.png -------------------------------------------------------------------------------- /public/images/taskContentAddImageFromDeviceBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/taskContentAddImageFromDeviceBlack.png -------------------------------------------------------------------------------- /public/images/taskContentBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/taskContentBlack.png -------------------------------------------------------------------------------- /public/images/taskContentEditorOptionsBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/taskContentEditorOptionsBlack.png -------------------------------------------------------------------------------- /public/images/uploadAccountImageBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/uploadAccountImageBlack.png -------------------------------------------------------------------------------- /public/images/workspaceMainPageFiltersBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/workspaceMainPageFiltersBlack.png -------------------------------------------------------------------------------- /public/images/workspaceMainPageFiltersWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/workspaceMainPageFiltersWhite.png -------------------------------------------------------------------------------- /public/images/workspaceMainpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/workspaceMainpage.png -------------------------------------------------------------------------------- /public/images/workspaceMembersBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/workspaceMembersBlack.png -------------------------------------------------------------------------------- /public/images/workspaceSettingsBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/images/workspaceSettingsBlack.png -------------------------------------------------------------------------------- /public/music/analog.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/music/analog.mp3 -------------------------------------------------------------------------------- /public/music/bell.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/music/bell.mp3 -------------------------------------------------------------------------------- /public/music/bird.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/music/bird.mp3 -------------------------------------------------------------------------------- /public/music/churchBell.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/music/churchBell.mp3 -------------------------------------------------------------------------------- /public/music/digital.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/music/digital.mp3 -------------------------------------------------------------------------------- /public/music/fancy.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/music/fancy.mp3 -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/public/window.svg -------------------------------------------------------------------------------- /schema/accountInfoSettingsSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/accountInfoSettingsSchema.ts -------------------------------------------------------------------------------- /schema/additionalUserInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/additionalUserInfo.ts -------------------------------------------------------------------------------- /schema/additionalUserInfoFirstPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/additionalUserInfoFirstPart.ts -------------------------------------------------------------------------------- /schema/changePasswordSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/changePasswordSchema.ts -------------------------------------------------------------------------------- /schema/deleteAccountSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/deleteAccountSchema.ts -------------------------------------------------------------------------------- /schema/deleteUserFromWorkspaceSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/deleteUserFromWorkspaceSchema.ts -------------------------------------------------------------------------------- /schema/edgeOptionsSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/edgeOptionsSchema.ts -------------------------------------------------------------------------------- /schema/editUserRoleSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/editUserRoleSchema.ts -------------------------------------------------------------------------------- /schema/imageSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/imageSchema.ts -------------------------------------------------------------------------------- /schema/linkSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/linkSchema.ts -------------------------------------------------------------------------------- /schema/messageSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/messageSchema.ts -------------------------------------------------------------------------------- /schema/mindMapSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/mindMapSchema.ts -------------------------------------------------------------------------------- /schema/nodesSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/nodesSchema.ts -------------------------------------------------------------------------------- /schema/onboardingSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/onboardingSchema.ts -------------------------------------------------------------------------------- /schema/pomodoroSettingsSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/pomodoroSettingsSchema.ts -------------------------------------------------------------------------------- /schema/shortTaskSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/shortTaskSchema.ts -------------------------------------------------------------------------------- /schema/signInSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/signInSchema.ts -------------------------------------------------------------------------------- /schema/signUpSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/signUpSchema.ts -------------------------------------------------------------------------------- /schema/tagSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/tagSchema.ts -------------------------------------------------------------------------------- /schema/taskSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/taskSchema.ts -------------------------------------------------------------------------------- /schema/updateTaskSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/updateTaskSchema.ts -------------------------------------------------------------------------------- /schema/workspaceSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/schema/workspaceSchema.ts -------------------------------------------------------------------------------- /store/conversation/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/store/conversation/messages.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/types/auth.ts -------------------------------------------------------------------------------- /types/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/types/enums.ts -------------------------------------------------------------------------------- /types/extended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/types/extended.ts -------------------------------------------------------------------------------- /types/onBoardingContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/types/onBoardingContext.ts -------------------------------------------------------------------------------- /types/props.ts: -------------------------------------------------------------------------------- 1 | export interface SvgProps extends React.SVGAttributes {} 2 | -------------------------------------------------------------------------------- /types/saved.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/types/saved.ts -------------------------------------------------------------------------------- /types/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuluruvineeth/super_productive/HEAD/types/supabase.ts --------------------------------------------------------------------------------