├── .editorconfig ├── .env ├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .prettierrc.json ├── README.md ├── jsconfig.json ├── package.json ├── public ├── 404.html ├── favicon.ico ├── fonts │ ├── coolvetica │ │ └── CoolveticaRg-Regular.ttf │ └── inter │ │ └── Inter-VariableFont_slnt,wght.ttf ├── images │ ├── calendar-desctop │ │ ├── calendar_d_x1.png │ │ ├── calendar_d_x1.webp │ │ ├── calendar_d_x2.png │ │ └── calendar_d_x2.webp │ ├── calendar-mobile │ │ ├── calendar_m_x1.png │ │ ├── calendar_m_x1.webp │ │ ├── calendar_m_x2.png │ │ └── calendar_m_x2.webp │ ├── calendar-tablet │ │ ├── calendar_t_x1.png │ │ ├── calendar_t_x1.webp │ │ ├── calendar_t_x2.png │ │ └── calendar_t_x2.webp │ ├── goose.png │ ├── goose_auth-desctop │ │ ├── goose_auth-desctop.png │ │ ├── goose_auth-desctop.webp │ │ ├── goose_auth-desctop@2x.png │ │ ├── goose_auth-desctop@2x.webp │ │ ├── rocket_auth-desctop.png │ │ ├── rocket_auth-desctop.webp │ │ ├── rocket_auth-desctop@2x.png │ │ └── rocket_auth-desctop@2x.webp │ ├── goose_hero-desctop-tablet │ │ ├── goose_hero-desctop-tablet.png │ │ ├── goose_hero-desctop-tablet.webp │ │ ├── goose_hero-desctop-tablet@2x.png │ │ └── goose_hero-desctop-tablet@2x.webp │ ├── goose_hero-mobile │ │ ├── goose_hero-mobile.png │ │ ├── goose_hero-mobile.webp │ │ ├── goose_hero-mobile@2x.png │ │ └── goose_hero-mobile@2x.webp │ ├── goose_logo-desctop │ │ ├── goose_logo-desctop.png │ │ ├── goose_logo-desctop.webp │ │ ├── goose_logo-desctop@2x.png │ │ └── goose_logo-desctop@2x.webp │ ├── goose_logo-mobile │ │ ├── goose_logo-mobile.png │ │ ├── goose_logo-mobile.webp │ │ ├── goose_logo-mobile@2x.png │ │ └── goose_logo-mobile@2x.webp │ ├── goose_logo-tablet │ │ ├── goose_logo-tablet.png │ │ ├── goose_logo-tablet.webp │ │ ├── goose_logo-tablet@2x.png │ │ └── goose_logo-tablet_2x.webp │ ├── goose_not_found │ │ ├── desctop_goose.png │ │ ├── desctop_goose.webp │ │ ├── desctop_goose@2x.png │ │ ├── desctop_goose@2x.webp │ │ ├── mobile_goose.webp │ │ ├── mobile_goose@2x.webp │ │ ├── mobile_goose_png.png │ │ ├── mobile_goose_png_2x@2x.png │ │ ├── tablet_goose.webp │ │ ├── tablet_goose@2x.webp │ │ ├── tablet_goose_png.png │ │ └── tablet_goose_png_2x.png │ ├── navigation-desctop │ │ ├── navigation_d_x1.png │ │ ├── navigation_d_x1.webp │ │ ├── navigation_d_x2.png │ │ └── navigation_d_x2.webp │ ├── navigation-mobile │ │ ├── navigation_m_x1.png │ │ ├── navigation_m_x1.webp │ │ ├── navigation_m_x2.png │ │ └── navigation_m_x2.webp │ ├── navigation-tablet │ │ ├── navigation_t_x1.png │ │ ├── navigation_t_x1.webp │ │ ├── navigation_t_x2.png │ │ └── navigation_t_x2.webp │ ├── rocket_auth-desctop │ │ ├── rocket_auth-desctop.png │ │ ├── rocket_auth-desctop.webp │ │ ├── rocket_auth-desctop@2x.png │ │ └── rocket_auth-desctop@2x.webp │ ├── sprite.svg │ ├── team_members │ │ ├── Anatolij Goga.jpg │ │ ├── Antonina Kicha.jpg │ │ ├── Ihor Leonov.jpg │ │ ├── Ilya Mustafa.jpg │ │ ├── Julia Babiychuk.jpg │ │ ├── Maxsym Svyrydov.jpg │ │ ├── Mykola Zanko.jpg │ │ ├── Mykyta Hilis.png │ │ ├── Oleg Rudenko.jpg │ │ ├── Ruslan Karpov.jpg │ │ ├── Serhii Karashchuk.jpg │ │ ├── Serhii Mukhin.jpg │ │ ├── Vadim Koverin.jpg │ │ └── Yevhenii Sitolenko.jpg │ ├── todo_board-desctop │ │ ├── todo_board_d_x1.png │ │ ├── todo_board_d_x1.webp │ │ ├── todo_board_d_x2.png │ │ └── todo_board_d_x2.webp │ ├── todo_board-mobile │ │ ├── todo_board_m_x1.png │ │ ├── todo_board_m_x1.webp │ │ ├── todo_board_m_x2.png │ │ └── todo_board_m_x2.webp │ └── todo_board-tablet │ │ ├── todo_board_t_x1.png │ │ ├── todo_board_t_x1.webp │ │ ├── todo_board_t_x2.png │ │ └── todo_board_t_x2.webp ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.jsx ├── components ├── AddFeedbackModal │ └── AddFeedbackModal.js ├── AddTaskBtn │ ├── AddTaskBtn.js │ └── AddTaskBtn.styled.jsx ├── CalendarToolbar │ ├── CalendarToolbar.js │ ├── CalendarToolbar.styled.jsx │ ├── PeriodPaginator │ │ ├── PeriodPaginator.js │ │ └── PeriodPaginator.styled.jsx │ └── PeriodTypeSelect │ │ ├── PeriodTypeSelect.js │ │ └── PeriodTypeSelect.styled.jsx ├── ChangeLanguageBtn │ ├── ChangeLanguageBtn.js │ └── ChangeLanguageBtn.styled.jsx ├── ChangePassord │ ├── ChangePassord.js │ └── ChangePassord.styled.jsx ├── ChoosedDay │ ├── ChoosedDay.js │ ├── TasksColumn │ │ ├── TasksColumn.js │ │ ├── TasksColumn.styled.jsx │ │ └── TasksComponents │ │ │ ├── ColumnHeadBar.js │ │ │ ├── ColumnHeadBar.styled.jsx │ │ │ ├── ColumnTasksList.js │ │ │ ├── ColumnTasksList.styled.jsx │ │ │ └── TaskColumnCard │ │ │ ├── TaskColumnCard.js │ │ │ ├── TaskColumnCard.styled.jsx │ │ │ ├── ToolBarTaskModal │ │ │ ├── ToolBarTaskModal.js │ │ │ └── ToolBarTaskModal.styled.jsx │ │ │ └── Toolbar │ │ │ ├── Toolbar.js │ │ │ └── Toolbar.styled.jsx │ ├── TasksColumnsList.js │ └── TasksColumnsList.styled.jsx ├── ChoosedMonth │ ├── CalendarTable │ │ ├── CalendarTable.js │ │ └── CalendarTable.styled.jsx │ ├── ChoosedMonth.jsx │ └── MonthCalendarHead │ │ ├── MonthCalendarHead.js │ │ └── MonthCalendarHead.styled.jsx ├── DayCalendarHead │ ├── DayCalendarHead.js │ └── DayCalendarHead.styled.jsx ├── FeedbackForm │ ├── FeedbackForm.js │ └── FeedbackForm.styled.js ├── Footer │ ├── Footer.js │ └── Footer.styled.jsx ├── Header │ ├── Header.js │ ├── Header.styled.jsx │ └── UserInfo │ │ ├── UserInfo.js │ │ └── UserInfo.styled.jsx ├── HomePageDescription │ ├── HomePageDescription.js │ └── HomePageDescription.styled.jsx ├── HomePageHeader │ ├── HomePageHeader.js │ └── HomePageHeader.styled.jsx ├── Loader │ ├── Loader.js │ └── Loader.styled.jsx ├── MainPageComponents │ └── ScrollToTop │ │ ├── ScrollToTop.jsx │ │ └── ScrollToTop.styled.jsx ├── Modal │ ├── Modal.js │ └── Modal.styled.jsx ├── NotFoundDescription │ ├── NotFoundDescription.js │ └── NotFoundDescription.styled.js ├── Notify │ └── Notify.js ├── ResendMailVerifyBtn │ ├── ResendMailVerifyBtn.js │ └── ResendMailVerifyBtn.styled.jsx ├── ResendMailVerifyModal │ ├── ResendMailVerifyModal.js │ └── ResendMailVerifyModal.styled.jsx ├── ReviewSlider │ ├── ReviewSlider.js │ └── ReviewSlider.styled.jsx ├── SharedLayout │ ├── SharedLayout.js │ └── SharedLayout.styled.jsx ├── SideBar │ ├── LogoutBtn │ │ ├── LogoutBtn.js │ │ └── LogoutBtn.styled.jsx │ ├── SideBar.js │ ├── SideBar.styled.jsx │ └── UserNav │ │ ├── UserNav.js │ │ └── UserNav.styled.jsx ├── StatisticsChart │ ├── StatisticsChart.js │ ├── StatisticsChart.styled.jsx │ └── StatisticsInfo │ │ ├── StatisticsInfo.js │ │ └── StatisticsInfo.styled.js ├── TaskForm │ ├── TaskForm.js │ └── TaskForm.styled.jsx ├── TaskModal │ └── TaskModal.js ├── TeamMembersModal │ ├── TeamMembersModal.js │ └── TeamMembersModal.styled.jsx ├── UserForm │ ├── UserForm.jsx │ └── UserForm.styled.jsx ├── VerificationConfirmation │ ├── VerificationConfirmation.js │ └── VerificationConfirmation.styled.jsx └── VisionIconsLogIn │ └── VisionIconsLogIn.js ├── constants ├── GlobalStyle.js ├── Theme.js └── locales │ ├── en │ └── translation.json │ └── uk │ └── translation.json ├── hooks ├── useAuth.js ├── useDate.js ├── useFeatchTasksByMonth.js ├── useFilterTasksDay.js └── useWindowSize.js ├── i18n.js ├── index.js ├── pages ├── Account │ ├── AccountPage.js │ └── AccountPage.styled.jsx ├── CalendarPage │ ├── CalendarPage.js │ └── CalendarPage.styled.jsx ├── EmailConfirmationPage │ ├── EmailConfirmationPage.js │ └── EmailConfirmationPage.styled.jsx ├── Home │ ├── Home.js │ └── index.js ├── Login │ ├── Login.js │ ├── Login.styled.jsx │ └── index.js ├── MainLayout │ ├── MainLayout.js │ └── MainLayout.styled.jsx ├── NotFound │ ├── NotFound.js │ └── index.js ├── Register │ ├── Register.js │ ├── Register.styled.jsx │ └── index.js └── StatisticsPage │ ├── StatisticsPage.js │ └── StatisticsPage.styled.js ├── redux ├── auth │ ├── authSlice.js │ ├── operations.js │ └── selectors.js ├── currentDate │ ├── curentDateSlice.js │ └── selector.js ├── modal │ ├── modalSlice.js │ └── selector.js ├── reviews │ ├── operations.js │ ├── reviewsSlice.js │ └── selectors.js ├── store.js └── task │ ├── operations.js │ ├── selectors.js │ └── tasksSlice.js ├── routes ├── PrivateRoute.js └── RestrictedRoute.js ├── shared └── icons │ ├── en.svg │ └── ua.svg └── utils ├── calendarToolbar ├── changeDate.js └── formatPeriod.js ├── featchReviews.js ├── hoursСomparison.js ├── lazyRetry.js └── setTimePicker.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/404.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/coolvetica/CoolveticaRg-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/fonts/coolvetica/CoolveticaRg-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/inter/Inter-VariableFont_slnt,wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/fonts/inter/Inter-VariableFont_slnt,wght.ttf -------------------------------------------------------------------------------- /public/images/calendar-desctop/calendar_d_x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/calendar-desctop/calendar_d_x1.png -------------------------------------------------------------------------------- /public/images/calendar-desctop/calendar_d_x1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/calendar-desctop/calendar_d_x1.webp -------------------------------------------------------------------------------- /public/images/calendar-desctop/calendar_d_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/calendar-desctop/calendar_d_x2.png -------------------------------------------------------------------------------- /public/images/calendar-desctop/calendar_d_x2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/calendar-desctop/calendar_d_x2.webp -------------------------------------------------------------------------------- /public/images/calendar-mobile/calendar_m_x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/calendar-mobile/calendar_m_x1.png -------------------------------------------------------------------------------- /public/images/calendar-mobile/calendar_m_x1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/calendar-mobile/calendar_m_x1.webp -------------------------------------------------------------------------------- /public/images/calendar-mobile/calendar_m_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/calendar-mobile/calendar_m_x2.png -------------------------------------------------------------------------------- /public/images/calendar-mobile/calendar_m_x2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/calendar-mobile/calendar_m_x2.webp -------------------------------------------------------------------------------- /public/images/calendar-tablet/calendar_t_x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/calendar-tablet/calendar_t_x1.png -------------------------------------------------------------------------------- /public/images/calendar-tablet/calendar_t_x1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/calendar-tablet/calendar_t_x1.webp -------------------------------------------------------------------------------- /public/images/calendar-tablet/calendar_t_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/calendar-tablet/calendar_t_x2.png -------------------------------------------------------------------------------- /public/images/calendar-tablet/calendar_t_x2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/calendar-tablet/calendar_t_x2.webp -------------------------------------------------------------------------------- /public/images/goose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose.png -------------------------------------------------------------------------------- /public/images/goose_auth-desctop/goose_auth-desctop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_auth-desctop/goose_auth-desctop.png -------------------------------------------------------------------------------- /public/images/goose_auth-desctop/goose_auth-desctop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_auth-desctop/goose_auth-desctop.webp -------------------------------------------------------------------------------- /public/images/goose_auth-desctop/goose_auth-desctop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_auth-desctop/goose_auth-desctop@2x.png -------------------------------------------------------------------------------- /public/images/goose_auth-desctop/goose_auth-desctop@2x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_auth-desctop/goose_auth-desctop@2x.webp -------------------------------------------------------------------------------- /public/images/goose_auth-desctop/rocket_auth-desctop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_auth-desctop/rocket_auth-desctop.png -------------------------------------------------------------------------------- /public/images/goose_auth-desctop/rocket_auth-desctop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_auth-desctop/rocket_auth-desctop.webp -------------------------------------------------------------------------------- /public/images/goose_auth-desctop/rocket_auth-desctop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_auth-desctop/rocket_auth-desctop@2x.png -------------------------------------------------------------------------------- /public/images/goose_auth-desctop/rocket_auth-desctop@2x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_auth-desctop/rocket_auth-desctop@2x.webp -------------------------------------------------------------------------------- /public/images/goose_hero-desctop-tablet/goose_hero-desctop-tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_hero-desctop-tablet/goose_hero-desctop-tablet.png -------------------------------------------------------------------------------- /public/images/goose_hero-desctop-tablet/goose_hero-desctop-tablet.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_hero-desctop-tablet/goose_hero-desctop-tablet.webp -------------------------------------------------------------------------------- /public/images/goose_hero-desctop-tablet/goose_hero-desctop-tablet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_hero-desctop-tablet/goose_hero-desctop-tablet@2x.png -------------------------------------------------------------------------------- /public/images/goose_hero-desctop-tablet/goose_hero-desctop-tablet@2x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_hero-desctop-tablet/goose_hero-desctop-tablet@2x.webp -------------------------------------------------------------------------------- /public/images/goose_hero-mobile/goose_hero-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_hero-mobile/goose_hero-mobile.png -------------------------------------------------------------------------------- /public/images/goose_hero-mobile/goose_hero-mobile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_hero-mobile/goose_hero-mobile.webp -------------------------------------------------------------------------------- /public/images/goose_hero-mobile/goose_hero-mobile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_hero-mobile/goose_hero-mobile@2x.png -------------------------------------------------------------------------------- /public/images/goose_hero-mobile/goose_hero-mobile@2x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_hero-mobile/goose_hero-mobile@2x.webp -------------------------------------------------------------------------------- /public/images/goose_logo-desctop/goose_logo-desctop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_logo-desctop/goose_logo-desctop.png -------------------------------------------------------------------------------- /public/images/goose_logo-desctop/goose_logo-desctop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_logo-desctop/goose_logo-desctop.webp -------------------------------------------------------------------------------- /public/images/goose_logo-desctop/goose_logo-desctop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_logo-desctop/goose_logo-desctop@2x.png -------------------------------------------------------------------------------- /public/images/goose_logo-desctop/goose_logo-desctop@2x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_logo-desctop/goose_logo-desctop@2x.webp -------------------------------------------------------------------------------- /public/images/goose_logo-mobile/goose_logo-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_logo-mobile/goose_logo-mobile.png -------------------------------------------------------------------------------- /public/images/goose_logo-mobile/goose_logo-mobile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_logo-mobile/goose_logo-mobile.webp -------------------------------------------------------------------------------- /public/images/goose_logo-mobile/goose_logo-mobile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_logo-mobile/goose_logo-mobile@2x.png -------------------------------------------------------------------------------- /public/images/goose_logo-mobile/goose_logo-mobile@2x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_logo-mobile/goose_logo-mobile@2x.webp -------------------------------------------------------------------------------- /public/images/goose_logo-tablet/goose_logo-tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_logo-tablet/goose_logo-tablet.png -------------------------------------------------------------------------------- /public/images/goose_logo-tablet/goose_logo-tablet.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_logo-tablet/goose_logo-tablet.webp -------------------------------------------------------------------------------- /public/images/goose_logo-tablet/goose_logo-tablet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_logo-tablet/goose_logo-tablet@2x.png -------------------------------------------------------------------------------- /public/images/goose_logo-tablet/goose_logo-tablet_2x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_logo-tablet/goose_logo-tablet_2x.webp -------------------------------------------------------------------------------- /public/images/goose_not_found/desctop_goose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_not_found/desctop_goose.png -------------------------------------------------------------------------------- /public/images/goose_not_found/desctop_goose.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_not_found/desctop_goose.webp -------------------------------------------------------------------------------- /public/images/goose_not_found/desctop_goose@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_not_found/desctop_goose@2x.png -------------------------------------------------------------------------------- /public/images/goose_not_found/desctop_goose@2x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_not_found/desctop_goose@2x.webp -------------------------------------------------------------------------------- /public/images/goose_not_found/mobile_goose.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_not_found/mobile_goose.webp -------------------------------------------------------------------------------- /public/images/goose_not_found/mobile_goose@2x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_not_found/mobile_goose@2x.webp -------------------------------------------------------------------------------- /public/images/goose_not_found/mobile_goose_png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_not_found/mobile_goose_png.png -------------------------------------------------------------------------------- /public/images/goose_not_found/mobile_goose_png_2x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_not_found/mobile_goose_png_2x@2x.png -------------------------------------------------------------------------------- /public/images/goose_not_found/tablet_goose.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_not_found/tablet_goose.webp -------------------------------------------------------------------------------- /public/images/goose_not_found/tablet_goose@2x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_not_found/tablet_goose@2x.webp -------------------------------------------------------------------------------- /public/images/goose_not_found/tablet_goose_png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_not_found/tablet_goose_png.png -------------------------------------------------------------------------------- /public/images/goose_not_found/tablet_goose_png_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/goose_not_found/tablet_goose_png_2x.png -------------------------------------------------------------------------------- /public/images/navigation-desctop/navigation_d_x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/navigation-desctop/navigation_d_x1.png -------------------------------------------------------------------------------- /public/images/navigation-desctop/navigation_d_x1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/navigation-desctop/navigation_d_x1.webp -------------------------------------------------------------------------------- /public/images/navigation-desctop/navigation_d_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/navigation-desctop/navigation_d_x2.png -------------------------------------------------------------------------------- /public/images/navigation-desctop/navigation_d_x2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/navigation-desctop/navigation_d_x2.webp -------------------------------------------------------------------------------- /public/images/navigation-mobile/navigation_m_x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/navigation-mobile/navigation_m_x1.png -------------------------------------------------------------------------------- /public/images/navigation-mobile/navigation_m_x1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/navigation-mobile/navigation_m_x1.webp -------------------------------------------------------------------------------- /public/images/navigation-mobile/navigation_m_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/navigation-mobile/navigation_m_x2.png -------------------------------------------------------------------------------- /public/images/navigation-mobile/navigation_m_x2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/navigation-mobile/navigation_m_x2.webp -------------------------------------------------------------------------------- /public/images/navigation-tablet/navigation_t_x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/navigation-tablet/navigation_t_x1.png -------------------------------------------------------------------------------- /public/images/navigation-tablet/navigation_t_x1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/navigation-tablet/navigation_t_x1.webp -------------------------------------------------------------------------------- /public/images/navigation-tablet/navigation_t_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/navigation-tablet/navigation_t_x2.png -------------------------------------------------------------------------------- /public/images/navigation-tablet/navigation_t_x2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/navigation-tablet/navigation_t_x2.webp -------------------------------------------------------------------------------- /public/images/rocket_auth-desctop/rocket_auth-desctop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/rocket_auth-desctop/rocket_auth-desctop.png -------------------------------------------------------------------------------- /public/images/rocket_auth-desctop/rocket_auth-desctop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/rocket_auth-desctop/rocket_auth-desctop.webp -------------------------------------------------------------------------------- /public/images/rocket_auth-desctop/rocket_auth-desctop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/rocket_auth-desctop/rocket_auth-desctop@2x.png -------------------------------------------------------------------------------- /public/images/rocket_auth-desctop/rocket_auth-desctop@2x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/rocket_auth-desctop/rocket_auth-desctop@2x.webp -------------------------------------------------------------------------------- /public/images/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/sprite.svg -------------------------------------------------------------------------------- /public/images/team_members/Anatolij Goga.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/team_members/Anatolij Goga.jpg -------------------------------------------------------------------------------- /public/images/team_members/Antonina Kicha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/team_members/Antonina Kicha.jpg -------------------------------------------------------------------------------- /public/images/team_members/Ihor Leonov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/team_members/Ihor Leonov.jpg -------------------------------------------------------------------------------- /public/images/team_members/Ilya Mustafa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/team_members/Ilya Mustafa.jpg -------------------------------------------------------------------------------- /public/images/team_members/Julia Babiychuk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/team_members/Julia Babiychuk.jpg -------------------------------------------------------------------------------- /public/images/team_members/Maxsym Svyrydov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/team_members/Maxsym Svyrydov.jpg -------------------------------------------------------------------------------- /public/images/team_members/Mykola Zanko.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/team_members/Mykola Zanko.jpg -------------------------------------------------------------------------------- /public/images/team_members/Mykyta Hilis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/team_members/Mykyta Hilis.png -------------------------------------------------------------------------------- /public/images/team_members/Oleg Rudenko.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/team_members/Oleg Rudenko.jpg -------------------------------------------------------------------------------- /public/images/team_members/Ruslan Karpov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/team_members/Ruslan Karpov.jpg -------------------------------------------------------------------------------- /public/images/team_members/Serhii Karashchuk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/team_members/Serhii Karashchuk.jpg -------------------------------------------------------------------------------- /public/images/team_members/Serhii Mukhin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/team_members/Serhii Mukhin.jpg -------------------------------------------------------------------------------- /public/images/team_members/Vadim Koverin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/team_members/Vadim Koverin.jpg -------------------------------------------------------------------------------- /public/images/team_members/Yevhenii Sitolenko.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/team_members/Yevhenii Sitolenko.jpg -------------------------------------------------------------------------------- /public/images/todo_board-desctop/todo_board_d_x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/todo_board-desctop/todo_board_d_x1.png -------------------------------------------------------------------------------- /public/images/todo_board-desctop/todo_board_d_x1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/todo_board-desctop/todo_board_d_x1.webp -------------------------------------------------------------------------------- /public/images/todo_board-desctop/todo_board_d_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/todo_board-desctop/todo_board_d_x2.png -------------------------------------------------------------------------------- /public/images/todo_board-desctop/todo_board_d_x2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/todo_board-desctop/todo_board_d_x2.webp -------------------------------------------------------------------------------- /public/images/todo_board-mobile/todo_board_m_x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/todo_board-mobile/todo_board_m_x1.png -------------------------------------------------------------------------------- /public/images/todo_board-mobile/todo_board_m_x1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/todo_board-mobile/todo_board_m_x1.webp -------------------------------------------------------------------------------- /public/images/todo_board-mobile/todo_board_m_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/todo_board-mobile/todo_board_m_x2.png -------------------------------------------------------------------------------- /public/images/todo_board-mobile/todo_board_m_x2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/todo_board-mobile/todo_board_m_x2.webp -------------------------------------------------------------------------------- /public/images/todo_board-tablet/todo_board_t_x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/todo_board-tablet/todo_board_t_x1.png -------------------------------------------------------------------------------- /public/images/todo_board-tablet/todo_board_t_x1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/todo_board-tablet/todo_board_t_x1.webp -------------------------------------------------------------------------------- /public/images/todo_board-tablet/todo_board_t_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/todo_board-tablet/todo_board_t_x2.png -------------------------------------------------------------------------------- /public/images/todo_board-tablet/todo_board_t_x2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/images/todo_board-tablet/todo_board_t_x2.webp -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/components/AddFeedbackModal/AddFeedbackModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/AddFeedbackModal/AddFeedbackModal.js -------------------------------------------------------------------------------- /src/components/AddTaskBtn/AddTaskBtn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/AddTaskBtn/AddTaskBtn.js -------------------------------------------------------------------------------- /src/components/AddTaskBtn/AddTaskBtn.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/AddTaskBtn/AddTaskBtn.styled.jsx -------------------------------------------------------------------------------- /src/components/CalendarToolbar/CalendarToolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/CalendarToolbar/CalendarToolbar.js -------------------------------------------------------------------------------- /src/components/CalendarToolbar/CalendarToolbar.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/CalendarToolbar/CalendarToolbar.styled.jsx -------------------------------------------------------------------------------- /src/components/CalendarToolbar/PeriodPaginator/PeriodPaginator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/CalendarToolbar/PeriodPaginator/PeriodPaginator.js -------------------------------------------------------------------------------- /src/components/CalendarToolbar/PeriodPaginator/PeriodPaginator.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/CalendarToolbar/PeriodPaginator/PeriodPaginator.styled.jsx -------------------------------------------------------------------------------- /src/components/CalendarToolbar/PeriodTypeSelect/PeriodTypeSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/CalendarToolbar/PeriodTypeSelect/PeriodTypeSelect.js -------------------------------------------------------------------------------- /src/components/CalendarToolbar/PeriodTypeSelect/PeriodTypeSelect.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/CalendarToolbar/PeriodTypeSelect/PeriodTypeSelect.styled.jsx -------------------------------------------------------------------------------- /src/components/ChangeLanguageBtn/ChangeLanguageBtn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChangeLanguageBtn/ChangeLanguageBtn.js -------------------------------------------------------------------------------- /src/components/ChangeLanguageBtn/ChangeLanguageBtn.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChangeLanguageBtn/ChangeLanguageBtn.styled.jsx -------------------------------------------------------------------------------- /src/components/ChangePassord/ChangePassord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChangePassord/ChangePassord.js -------------------------------------------------------------------------------- /src/components/ChangePassord/ChangePassord.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChangePassord/ChangePassord.styled.jsx -------------------------------------------------------------------------------- /src/components/ChoosedDay/ChoosedDay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedDay/ChoosedDay.js -------------------------------------------------------------------------------- /src/components/ChoosedDay/TasksColumn/TasksColumn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedDay/TasksColumn/TasksColumn.js -------------------------------------------------------------------------------- /src/components/ChoosedDay/TasksColumn/TasksColumn.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedDay/TasksColumn/TasksColumn.styled.jsx -------------------------------------------------------------------------------- /src/components/ChoosedDay/TasksColumn/TasksComponents/ColumnHeadBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedDay/TasksColumn/TasksComponents/ColumnHeadBar.js -------------------------------------------------------------------------------- /src/components/ChoosedDay/TasksColumn/TasksComponents/ColumnHeadBar.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedDay/TasksColumn/TasksComponents/ColumnHeadBar.styled.jsx -------------------------------------------------------------------------------- /src/components/ChoosedDay/TasksColumn/TasksComponents/ColumnTasksList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedDay/TasksColumn/TasksComponents/ColumnTasksList.js -------------------------------------------------------------------------------- /src/components/ChoosedDay/TasksColumn/TasksComponents/ColumnTasksList.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedDay/TasksColumn/TasksComponents/ColumnTasksList.styled.jsx -------------------------------------------------------------------------------- /src/components/ChoosedDay/TasksColumn/TasksComponents/TaskColumnCard/TaskColumnCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedDay/TasksColumn/TasksComponents/TaskColumnCard/TaskColumnCard.js -------------------------------------------------------------------------------- /src/components/ChoosedDay/TasksColumn/TasksComponents/TaskColumnCard/TaskColumnCard.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedDay/TasksColumn/TasksComponents/TaskColumnCard/TaskColumnCard.styled.jsx -------------------------------------------------------------------------------- /src/components/ChoosedDay/TasksColumn/TasksComponents/TaskColumnCard/ToolBarTaskModal/ToolBarTaskModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedDay/TasksColumn/TasksComponents/TaskColumnCard/ToolBarTaskModal/ToolBarTaskModal.js -------------------------------------------------------------------------------- /src/components/ChoosedDay/TasksColumn/TasksComponents/TaskColumnCard/ToolBarTaskModal/ToolBarTaskModal.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedDay/TasksColumn/TasksComponents/TaskColumnCard/ToolBarTaskModal/ToolBarTaskModal.styled.jsx -------------------------------------------------------------------------------- /src/components/ChoosedDay/TasksColumn/TasksComponents/TaskColumnCard/Toolbar/Toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedDay/TasksColumn/TasksComponents/TaskColumnCard/Toolbar/Toolbar.js -------------------------------------------------------------------------------- /src/components/ChoosedDay/TasksColumn/TasksComponents/TaskColumnCard/Toolbar/Toolbar.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedDay/TasksColumn/TasksComponents/TaskColumnCard/Toolbar/Toolbar.styled.jsx -------------------------------------------------------------------------------- /src/components/ChoosedDay/TasksColumnsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedDay/TasksColumnsList.js -------------------------------------------------------------------------------- /src/components/ChoosedDay/TasksColumnsList.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedDay/TasksColumnsList.styled.jsx -------------------------------------------------------------------------------- /src/components/ChoosedMonth/CalendarTable/CalendarTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedMonth/CalendarTable/CalendarTable.js -------------------------------------------------------------------------------- /src/components/ChoosedMonth/CalendarTable/CalendarTable.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedMonth/CalendarTable/CalendarTable.styled.jsx -------------------------------------------------------------------------------- /src/components/ChoosedMonth/ChoosedMonth.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedMonth/ChoosedMonth.jsx -------------------------------------------------------------------------------- /src/components/ChoosedMonth/MonthCalendarHead/MonthCalendarHead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedMonth/MonthCalendarHead/MonthCalendarHead.js -------------------------------------------------------------------------------- /src/components/ChoosedMonth/MonthCalendarHead/MonthCalendarHead.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ChoosedMonth/MonthCalendarHead/MonthCalendarHead.styled.jsx -------------------------------------------------------------------------------- /src/components/DayCalendarHead/DayCalendarHead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/DayCalendarHead/DayCalendarHead.js -------------------------------------------------------------------------------- /src/components/DayCalendarHead/DayCalendarHead.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/DayCalendarHead/DayCalendarHead.styled.jsx -------------------------------------------------------------------------------- /src/components/FeedbackForm/FeedbackForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/FeedbackForm/FeedbackForm.js -------------------------------------------------------------------------------- /src/components/FeedbackForm/FeedbackForm.styled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/FeedbackForm/FeedbackForm.styled.js -------------------------------------------------------------------------------- /src/components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/Footer/Footer.js -------------------------------------------------------------------------------- /src/components/Footer/Footer.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/Footer/Footer.styled.jsx -------------------------------------------------------------------------------- /src/components/Header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/Header/Header.js -------------------------------------------------------------------------------- /src/components/Header/Header.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/Header/Header.styled.jsx -------------------------------------------------------------------------------- /src/components/Header/UserInfo/UserInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/Header/UserInfo/UserInfo.js -------------------------------------------------------------------------------- /src/components/Header/UserInfo/UserInfo.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/Header/UserInfo/UserInfo.styled.jsx -------------------------------------------------------------------------------- /src/components/HomePageDescription/HomePageDescription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/HomePageDescription/HomePageDescription.js -------------------------------------------------------------------------------- /src/components/HomePageDescription/HomePageDescription.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/HomePageDescription/HomePageDescription.styled.jsx -------------------------------------------------------------------------------- /src/components/HomePageHeader/HomePageHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/HomePageHeader/HomePageHeader.js -------------------------------------------------------------------------------- /src/components/HomePageHeader/HomePageHeader.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/HomePageHeader/HomePageHeader.styled.jsx -------------------------------------------------------------------------------- /src/components/Loader/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/Loader/Loader.js -------------------------------------------------------------------------------- /src/components/Loader/Loader.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/Loader/Loader.styled.jsx -------------------------------------------------------------------------------- /src/components/MainPageComponents/ScrollToTop/ScrollToTop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/MainPageComponents/ScrollToTop/ScrollToTop.jsx -------------------------------------------------------------------------------- /src/components/MainPageComponents/ScrollToTop/ScrollToTop.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/MainPageComponents/ScrollToTop/ScrollToTop.styled.jsx -------------------------------------------------------------------------------- /src/components/Modal/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/Modal/Modal.js -------------------------------------------------------------------------------- /src/components/Modal/Modal.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/Modal/Modal.styled.jsx -------------------------------------------------------------------------------- /src/components/NotFoundDescription/NotFoundDescription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/NotFoundDescription/NotFoundDescription.js -------------------------------------------------------------------------------- /src/components/NotFoundDescription/NotFoundDescription.styled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/NotFoundDescription/NotFoundDescription.styled.js -------------------------------------------------------------------------------- /src/components/Notify/Notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/Notify/Notify.js -------------------------------------------------------------------------------- /src/components/ResendMailVerifyBtn/ResendMailVerifyBtn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ResendMailVerifyBtn/ResendMailVerifyBtn.js -------------------------------------------------------------------------------- /src/components/ResendMailVerifyBtn/ResendMailVerifyBtn.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ResendMailVerifyBtn/ResendMailVerifyBtn.styled.jsx -------------------------------------------------------------------------------- /src/components/ResendMailVerifyModal/ResendMailVerifyModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ResendMailVerifyModal/ResendMailVerifyModal.js -------------------------------------------------------------------------------- /src/components/ResendMailVerifyModal/ResendMailVerifyModal.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ResendMailVerifyModal/ResendMailVerifyModal.styled.jsx -------------------------------------------------------------------------------- /src/components/ReviewSlider/ReviewSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ReviewSlider/ReviewSlider.js -------------------------------------------------------------------------------- /src/components/ReviewSlider/ReviewSlider.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/ReviewSlider/ReviewSlider.styled.jsx -------------------------------------------------------------------------------- /src/components/SharedLayout/SharedLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/SharedLayout/SharedLayout.js -------------------------------------------------------------------------------- /src/components/SharedLayout/SharedLayout.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/SharedLayout/SharedLayout.styled.jsx -------------------------------------------------------------------------------- /src/components/SideBar/LogoutBtn/LogoutBtn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/SideBar/LogoutBtn/LogoutBtn.js -------------------------------------------------------------------------------- /src/components/SideBar/LogoutBtn/LogoutBtn.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/SideBar/LogoutBtn/LogoutBtn.styled.jsx -------------------------------------------------------------------------------- /src/components/SideBar/SideBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/SideBar/SideBar.js -------------------------------------------------------------------------------- /src/components/SideBar/SideBar.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/SideBar/SideBar.styled.jsx -------------------------------------------------------------------------------- /src/components/SideBar/UserNav/UserNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/SideBar/UserNav/UserNav.js -------------------------------------------------------------------------------- /src/components/SideBar/UserNav/UserNav.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/SideBar/UserNav/UserNav.styled.jsx -------------------------------------------------------------------------------- /src/components/StatisticsChart/StatisticsChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/StatisticsChart/StatisticsChart.js -------------------------------------------------------------------------------- /src/components/StatisticsChart/StatisticsChart.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/StatisticsChart/StatisticsChart.styled.jsx -------------------------------------------------------------------------------- /src/components/StatisticsChart/StatisticsInfo/StatisticsInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/StatisticsChart/StatisticsInfo/StatisticsInfo.js -------------------------------------------------------------------------------- /src/components/StatisticsChart/StatisticsInfo/StatisticsInfo.styled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/StatisticsChart/StatisticsInfo/StatisticsInfo.styled.js -------------------------------------------------------------------------------- /src/components/TaskForm/TaskForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/TaskForm/TaskForm.js -------------------------------------------------------------------------------- /src/components/TaskForm/TaskForm.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/TaskForm/TaskForm.styled.jsx -------------------------------------------------------------------------------- /src/components/TaskModal/TaskModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/TaskModal/TaskModal.js -------------------------------------------------------------------------------- /src/components/TeamMembersModal/TeamMembersModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/TeamMembersModal/TeamMembersModal.js -------------------------------------------------------------------------------- /src/components/TeamMembersModal/TeamMembersModal.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/TeamMembersModal/TeamMembersModal.styled.jsx -------------------------------------------------------------------------------- /src/components/UserForm/UserForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/UserForm/UserForm.jsx -------------------------------------------------------------------------------- /src/components/UserForm/UserForm.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/UserForm/UserForm.styled.jsx -------------------------------------------------------------------------------- /src/components/VerificationConfirmation/VerificationConfirmation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/VerificationConfirmation/VerificationConfirmation.js -------------------------------------------------------------------------------- /src/components/VerificationConfirmation/VerificationConfirmation.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/VerificationConfirmation/VerificationConfirmation.styled.jsx -------------------------------------------------------------------------------- /src/components/VisionIconsLogIn/VisionIconsLogIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/components/VisionIconsLogIn/VisionIconsLogIn.js -------------------------------------------------------------------------------- /src/constants/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/constants/GlobalStyle.js -------------------------------------------------------------------------------- /src/constants/Theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/constants/Theme.js -------------------------------------------------------------------------------- /src/constants/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/constants/locales/en/translation.json -------------------------------------------------------------------------------- /src/constants/locales/uk/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/constants/locales/uk/translation.json -------------------------------------------------------------------------------- /src/hooks/useAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/hooks/useAuth.js -------------------------------------------------------------------------------- /src/hooks/useDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/hooks/useDate.js -------------------------------------------------------------------------------- /src/hooks/useFeatchTasksByMonth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/hooks/useFeatchTasksByMonth.js -------------------------------------------------------------------------------- /src/hooks/useFilterTasksDay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/hooks/useFilterTasksDay.js -------------------------------------------------------------------------------- /src/hooks/useWindowSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/hooks/useWindowSize.js -------------------------------------------------------------------------------- /src/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/i18n.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/Account/AccountPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/Account/AccountPage.js -------------------------------------------------------------------------------- /src/pages/Account/AccountPage.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/Account/AccountPage.styled.jsx -------------------------------------------------------------------------------- /src/pages/CalendarPage/CalendarPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/CalendarPage/CalendarPage.js -------------------------------------------------------------------------------- /src/pages/CalendarPage/CalendarPage.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/CalendarPage/CalendarPage.styled.jsx -------------------------------------------------------------------------------- /src/pages/EmailConfirmationPage/EmailConfirmationPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/EmailConfirmationPage/EmailConfirmationPage.js -------------------------------------------------------------------------------- /src/pages/EmailConfirmationPage/EmailConfirmationPage.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/EmailConfirmationPage/EmailConfirmationPage.styled.jsx -------------------------------------------------------------------------------- /src/pages/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/Home/Home.js -------------------------------------------------------------------------------- /src/pages/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/Home/index.js -------------------------------------------------------------------------------- /src/pages/Login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/Login/Login.js -------------------------------------------------------------------------------- /src/pages/Login/Login.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/Login/Login.styled.jsx -------------------------------------------------------------------------------- /src/pages/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/Login/index.js -------------------------------------------------------------------------------- /src/pages/MainLayout/MainLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/MainLayout/MainLayout.js -------------------------------------------------------------------------------- /src/pages/MainLayout/MainLayout.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/MainLayout/MainLayout.styled.jsx -------------------------------------------------------------------------------- /src/pages/NotFound/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/NotFound/NotFound.js -------------------------------------------------------------------------------- /src/pages/NotFound/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/NotFound/index.js -------------------------------------------------------------------------------- /src/pages/Register/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/Register/Register.js -------------------------------------------------------------------------------- /src/pages/Register/Register.styled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/Register/Register.styled.jsx -------------------------------------------------------------------------------- /src/pages/Register/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/Register/index.js -------------------------------------------------------------------------------- /src/pages/StatisticsPage/StatisticsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/StatisticsPage/StatisticsPage.js -------------------------------------------------------------------------------- /src/pages/StatisticsPage/StatisticsPage.styled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/pages/StatisticsPage/StatisticsPage.styled.js -------------------------------------------------------------------------------- /src/redux/auth/authSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/redux/auth/authSlice.js -------------------------------------------------------------------------------- /src/redux/auth/operations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/redux/auth/operations.js -------------------------------------------------------------------------------- /src/redux/auth/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/redux/auth/selectors.js -------------------------------------------------------------------------------- /src/redux/currentDate/curentDateSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/redux/currentDate/curentDateSlice.js -------------------------------------------------------------------------------- /src/redux/currentDate/selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/redux/currentDate/selector.js -------------------------------------------------------------------------------- /src/redux/modal/modalSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/redux/modal/modalSlice.js -------------------------------------------------------------------------------- /src/redux/modal/selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/redux/modal/selector.js -------------------------------------------------------------------------------- /src/redux/reviews/operations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/redux/reviews/operations.js -------------------------------------------------------------------------------- /src/redux/reviews/reviewsSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/redux/reviews/reviewsSlice.js -------------------------------------------------------------------------------- /src/redux/reviews/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/redux/reviews/selectors.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/redux/task/operations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/redux/task/operations.js -------------------------------------------------------------------------------- /src/redux/task/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/redux/task/selectors.js -------------------------------------------------------------------------------- /src/redux/task/tasksSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/redux/task/tasksSlice.js -------------------------------------------------------------------------------- /src/routes/PrivateRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/routes/PrivateRoute.js -------------------------------------------------------------------------------- /src/routes/RestrictedRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/routes/RestrictedRoute.js -------------------------------------------------------------------------------- /src/shared/icons/en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/shared/icons/en.svg -------------------------------------------------------------------------------- /src/shared/icons/ua.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/shared/icons/ua.svg -------------------------------------------------------------------------------- /src/utils/calendarToolbar/changeDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/utils/calendarToolbar/changeDate.js -------------------------------------------------------------------------------- /src/utils/calendarToolbar/formatPeriod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/utils/calendarToolbar/formatPeriod.js -------------------------------------------------------------------------------- /src/utils/featchReviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/utils/featchReviews.js -------------------------------------------------------------------------------- /src/utils/hoursСomparison.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/utils/hoursСomparison.js -------------------------------------------------------------------------------- /src/utils/lazyRetry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/utils/lazyRetry.js -------------------------------------------------------------------------------- /src/utils/setTimePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IhorLeonov/project-Bra1n_Gain/HEAD/src/utils/setTimePicker.js --------------------------------------------------------------------------------