Angular Web App
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

36 líneas
1.0 KiB

  1. <section class="navbar">
  2. <figure class="logo">
  3. <img src="assets/icons/logo.svg" alt="logo image">
  4. </figure>
  5. <div class="search-input">
  6. <input type="text" placeholder="Search for Business Entities">
  7. <img src="assets/icons/search.svg" alt="search icon">
  8. </div>
  9. <section class="profile-actions">
  10. <img src="assets/icons/user.svg" alt="user icon">
  11. <span> Hi, Joe Ghatto </span>
  12. <img src="assets/icons/chevron-down.svg" alt="chevron down image">
  13. </section>
  14. </section>
  15. <section class="tabs">
  16. <button class="active">
  17. <img src="assets/icons/home.svg" alt="home icon">
  18. </button>
  19. <button>
  20. <img src="assets/icons/dashboard.svg" alt="dashboard icon">
  21. </button>
  22. <button>
  23. <img src="assets/icons/tiles-dashboard.svg" alt="tiles dashboard icon">
  24. </button>
  25. <button>
  26. <img src="assets/icons/settings.svg" alt="settings icon">
  27. </button>
  28. </section>
  29. <div class="page">
  30. <router-outlet></router-outlet>
  31. </div>