top-bar.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <div
  2. class="z-30 transition-colors top-0"
  3. :class="{ 'bg-transparent bg-none absolute w-full': isLandingPage, 'bg-white border-b border-dotted border-blue-200': !isLandingPage }"
  4. x-data="{ ...Components.popover(false), isLandingPage: {{ default false .isLandingPage }} }"
  5. >
  6. <div
  7. :class="{ 'hidden': isLandingPage }"
  8. class="absolute w-full h-1 bg-gradient-to-r from-blue-300 via-green-300 to-blue-100"
  9. ></div>
  10. {{ partial "announcement-banner" (dict "content" ` 🚨 Announcing
  11. <a href="https://vendure.io/" class="text-white font-medium underline"
  12. >Announcing Vendure v2<span aria-hidden="true">&rarr;</span></a
  13. >
  14. `) }}
  15. <div class="max-w-screen-2xl mx-auto px-4 py-4 sm:px-6 md:pr-10">
  16. <div class="flex justify-between items-center md:space-x-10">
  17. <div class="flex justify-start lg:w-0 lg:flex-1">
  18. <a class="logo flex space-x-4 items-center" href="https://vendure.io" title="back to landing page">
  19. <div>
  20. <img class="w-10" src="/logo.png" alt="Vendure logo" />
  21. </div>
  22. <div>
  23. <div class="font-wordmark font-bold text-blue-500 text-3xl mt-0">vendure</div>
  24. <div class="text-gray-500">documentation</div>
  25. </div>
  26. </a>
  27. </div>
  28. <div class="flex items-center space-x-4">
  29. <a href="https://vendure.io/community" target="_blank" title="Join our Discord community!">
  30. <img src="/logo/discord-logo.png" class="w-6 h-6" alt="Discord logo" />
  31. </a>
  32. <a href="https://github.com/vendure-ecommerce/vendure" class="">
  33. <img
  34. class=""
  35. alt="GitHub star counter"
  36. src="https://img.shields.io/github/stars/vendure-ecommerce/vendure.svg?style=social"
  37. />
  38. </a>
  39. </div>
  40. </div>
  41. </div>
  42. </div>