Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

pages.ts 596B

123456789101112
  1. export const BASE_PAGE: string = '/';
  2. export const CHECKOUT_PAGE: string = '/checkout';
  3. export const CART_PAGE: string = '/cart';
  4. export const SHIPPING_PAGE: string = '/shipping';
  5. export const REVIEW_PAGE: string = '/review';
  6. export const PRODUCTS_PAGE: string = '/products';
  7. export const LOGIN_PAGE: string = '/auth';
  8. export const PROFILE_PAGE: string = '/profile';
  9. export const REGISTER_PAGE: string = '/auth/register';
  10. export const FORGOT_PASSWORD_PAGE: string = '/auth/forgot-password';
  11. export const SINGLE_DATA_PAGE: string = '/single-data/';
  12. export const CONTACT_PAGE: string = '/contact';