footer.html 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. {{ define "partials/social-link" }}
  2. <a href="{{ .url }}" title="{{ .name }}" class="text-gray-400 hover:text-gray-500">
  3. <span class="sr-only">{{ .name }}</span>
  4. <img class="w-6 h-6" alt="{{ .name }} logo" src="{{ .icon }}"/>
  5. </a>
  6. {{ end }}
  7. <footer class="relative bg-gradient-to-br from-gray-700 to-gray-900 relative" aria-labelledby="footerHeading">
  8. <h2 id="footerHeading" class="sr-only">Footer</h2>
  9. <div class="absolute w-full h-full texture-bg mix-blend-difference"></div>
  10. <div class="relative max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8">
  11. <div class="xl:grid xl:grid-cols-3 xl:gap-8">
  12. <div class="grid grid-cols-2 gap-8 xl:col-span-2">
  13. <div class="md:grid md:grid-cols-2 md:gap-8">
  14. <div>
  15. <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">
  16. Product
  17. </h3>
  18. <ul class="mt-4 space-y-4">
  19. <li>
  20. <a href="/features" class="text-base text-gray-300 hover:text-white">
  21. Features
  22. </a>
  23. </li>
  24. <li>
  25. <a href="/case-study" class="text-base text-gray-300 hover:text-white">
  26. Case studies
  27. </a>
  28. </li>
  29. <li>
  30. <a href="/plugins" class="text-base text-gray-300 hover:text-white">
  31. Plugins
  32. </a>
  33. </li>
  34. <li>
  35. <a href="/integration" class="text-base text-gray-300 hover:text-white">
  36. Integrations
  37. </a>
  38. </li>
  39. <li>
  40. <a href="https://demo.vendure.io" class="text-base text-gray-300 hover:text-white">
  41. Demo
  42. </a>
  43. </li>
  44. </ul>
  45. </div>
  46. <div class="mt-12 md:mt-0">
  47. <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">
  48. Services
  49. </h3>
  50. <ul class="mt-4 space-y-4">
  51. <li>
  52. <a href="/support" class="text-base text-gray-300 hover:text-white">
  53. Support
  54. </a>
  55. </li>
  56. <li>
  57. <a href="/partners" class="text-base text-gray-300 hover:text-white">
  58. Become a Partner
  59. </a>
  60. </li>
  61. <li>
  62. <a href="/cert-check" class="text-base text-gray-300 hover:text-white">
  63. Partner Certification Check
  64. </a>
  65. </li>
  66. </ul>
  67. </div>
  68. </div>
  69. <div class="md:grid md:grid-cols-2 md:gap-8">
  70. <div>
  71. <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">
  72. Documentation
  73. </h3>
  74. <ul class="mt-4 space-y-4">
  75. <li>
  76. <a href="/docs/getting-started/" class="text-base text-gray-300 hover:text-white">
  77. Getting Started
  78. </a>
  79. </li>
  80. <li>
  81. <a href="/docs/developer-guide/" class="text-base text-gray-300 hover:text-white">
  82. Developer Guide
  83. </a>
  84. </li>
  85. <li>
  86. <a href="/docs/graphql-api/" class="text-base text-gray-300 hover:text-white">
  87. GraphQL API
  88. </a>
  89. </li>
  90. </ul>
  91. </div>
  92. <div class="mt-12 md:mt-0">
  93. <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">
  94. Community
  95. </h3>
  96. <ul class="mt-4 space-y-4">
  97. <li>
  98. <a href="https://github.com/vendure-ecommerce/vendure" class="text-base text-gray-300 hover:text-white">
  99. GitHub
  100. </a>
  101. </li>
  102. <li>
  103. <a href="https://github.com/vendure-ecommerce/vendure/discussions" class="text-base text-gray-300 hover:text-white">
  104. Support Forum
  105. </a>
  106. </li>
  107. <li>
  108. <a href="https://www.vendure.io/community" class="text-base text-gray-300 hover:text-white">
  109. Discord Community
  110. </a>
  111. </li>
  112. <li>
  113. <a href="/contributors" class="text-base text-gray-300 hover:text-white">
  114. Sponsors & Contributors
  115. </a>
  116. </li>
  117. </ul>
  118. </div>
  119. </div>
  120. </div>
  121. <div class="mt-8 xl:mt-0">
  122. <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">
  123. Subscribe to our newsletter
  124. </h3>
  125. <p class="mt-4 text-base text-gray-300">
  126. Get important Vendure news and announcements direct to your inbox.
  127. </p>
  128. <!-- Begin Mailchimp Signup Form -->
  129. <div id="mc_embed_signup">
  130. <form class="mt-4 validate"
  131. action="https://vendure.us1.list-manage.com/subscribe/post?u=967048b8dcdf53aea61cf1a28&amp;id=6802bb1d9d"
  132. method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form"
  133. target="_blank"
  134. novalidate>
  135. <div id="mc_embed_signup_scroll" class="sm:flex sm:max-w-md space-x-1">
  136. <input type="email" value="" name="EMAIL" id="mce-EMAIL" placeholder="email address" required
  137. class="appearance-none min-w-0 w-full bg-white border border-transparent rounded-md py-2 px-4 text-base text-gray-900 placeholder-gray-500 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-800 focus:ring-white focus:border-white focus:placeholder-gray-400">
  138. <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
  139. <div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text"
  140. name="b_967048b8dcdf53aea61cf1a28_6802bb1d9d"
  141. tabindex="-1" value=""></div>
  142. <input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe"
  143. class="w-32 btn-primary">
  144. </div>
  145. </form>
  146. </div>
  147. <!--End mc_embed_signup-->
  148. </div>
  149. </div>
  150. <div class="mt-8 border-t border-gray-700 pt-8 md:flex md:items-center md:justify-between">
  151. <div class="md:order-2">
  152. <div class="flex space-x-6">
  153. {{ partial "social-link" (dict
  154. "url" "https://github.com/vendure-ecommerce/vendure"
  155. "name" "GitHub"
  156. "icon" "/svg/icon-github-inverse.svg"
  157. ) }}
  158. {{ partial "social-link" (dict
  159. "url" "https://www.npmjs.com/~vendure"
  160. "name" "npm"
  161. "icon" "/svg/icon-npm.svg"
  162. ) }}
  163. {{ partial "social-link" (dict
  164. "url" "https://twitter.com/vendure_io"
  165. "name" "Twitter"
  166. "icon" "/svg/icon-twitter.svg"
  167. ) }}
  168. {{ partial "social-link" (dict
  169. "url" "https://www.vendure.io/discord"
  170. "name" "Discord"
  171. "icon" "/logo/discord-logo.png"
  172. ) }}
  173. {{ partial "social-link" (dict
  174. "url" "https://www.youtube.com/channel/UCZuBR2NrUKOq8M9_mDYP8PA"
  175. "name" "YouTube"
  176. "icon" "/svg/icon-youtube.svg"
  177. ) }}
  178. {{ partial "social-link" (dict
  179. "url" "mailto:contact@vendure.io"
  180. "name" "Email"
  181. "icon" "/svg/clr-icon-email-light.svg"
  182. ) }}
  183. </div>
  184. <div class="flex mt-4 space-x-4 opacity-90">
  185. <a href="https://github.com/vendure-ecommerce/vendure"><img class="" alt="GitHub star counter"
  186. src="https://img.shields.io/github/stars/vendure-ecommerce/vendure.svg?style=social"></a>
  187. <a href="https://www.npmjs.com/package/@vendure/core"><img class="" alt="npm version"
  188. src="https://img.shields.io/npm/v/@vendure/core"></a>
  189. </div>
  190. </div>
  191. <div class="mt-8 text-base text-gray-400 md:mt-0 md:order-1">
  192. <p>&copy; {{ now.Format "2006" }} Vendure GmbH. All rights reserved.
  193. </p>
  194. <p class="text-gray-500">Wiedner Gürtel 12/1/2, 1040 Vienna, Austria</p>
  195. <a class="text-gray-400 hover:underline mr-8" href="/impressum">Impressum</a>
  196. <a class="text-gray-400 hover:underline" href="/branding">Logo resources & trademark</a>
  197. </p>
  198. </div>
  199. </div>
  200. </footer>