Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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';