Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122
  1. export const BASE_PAGE = "/";
  2. export const LOGIN_PAGE = "/login";
  3. export const FORGOT_PASSWORD_PAGE = "/forgot-password";
  4. export const ADMIN_LOGIN_PAGE = "/admin/login";
  5. export const HOME_PAGE = "/home";
  6. export const ERROR_PAGE = "/error-page";
  7. export const NOT_FOUND_PAGE = "/not-found";
  8. export const FORGOT_PASSWORD_MAIL_SENT = "/forgot-password/mail-sent";
  9. export const REGISTER_PAGE = "/register";
  10. export const REGISTER_SUCCESSFUL_PAGE = "/register/success";
  11. export const RESET_PASSWORD_PAGE = "/reset-password/:token";
  12. export const CREATE_OFFER_PAGE = "/create-offer";
  13. export const ITEM_DETAILS_PAGE = "/proizvodi/:idProizvod";
  14. export const PROFILE_PAGE = "/profile/:idProfile";
  15. export const CHAT_PAGE = "/messages";
  16. export const CHAT_MESSAGE_PAGE = "/messages/:idChat";
  17. export const MY_OFFERS_PAGE = "/myoffers";
  18. export const ABOUT_PAGE = "/about";
  19. export const PRICES_PAGE = "/prices";
  20. export const POLICY_PRIVACY_PAGE = "/policy";
  21. export const ADMIN_HOME_PAGE = "/admin";
  22. export const ADMIN_USERS_PAGE = "/admin/users";