index.en.html 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. {{ partial "docs/html-head" . }}
  5. <link rel="stylesheet" href="{{ "intro.css" | relURL }}">
  6. {{ template "_internal/opengraph.html" . }}
  7. {{ template "_internal/twitter_cards.html" . }}
  8. </head>
  9. <body class="landing-page">
  10. {{ partial "top-bar" (dict "isLandingPage" true) }}
  11. {{ partial "intro" }}
  12. <div class="section-1">
  13. <div class="content">
  14. <h2>E-commerce for the Modern Web</h2>
  15. <div class="graphql-playground-widget">
  16. <div class="graphql-playground-tab" data-name="Product List">
  17. query {
  18. products(options: { skip: 0 take: 3 }) {
  19. totalItems
  20. items {
  21. name
  22. variants {
  23. sku
  24. name
  25. price
  26. }
  27. }
  28. }
  29. }
  30. </div>
  31. <div class="graphql-playground-tab" data-name="Product Search">
  32. query {
  33. search(input: { term: "camera" }) {
  34. items {
  35. sku
  36. productName
  37. }
  38. }
  39. }
  40. </div>
  41. <div class="graphql-playground-tab" data-name="Add To Order">
  42. mutation {
  43. addItemToOrder(productVariantId: 5 quantity: 1) {
  44. code
  45. total
  46. state
  47. lines {
  48. productVariant {
  49. id
  50. name
  51. }
  52. unitPrice
  53. quantity
  54. totalPrice
  55. }
  56. }
  57. }
  58. </div>
  59. </div>
  60. <p class="lead">Vendure is a new e-commerce framework built for the developers who are building the modern web.<br>
  61. <img src="{{ "svg/clr-icon-book-light.svg" | relURL }}" alt="check icon"> Read: <a href="{{ "blog/introducing-vendure" | relURL }}">Introducing Vendure</a></p>
  62. <div class="stack-logos">
  63. <div class="stack-logo ts-logo">
  64. <img src="{{ "logo/ts-logo.svg" | relURL }}">
  65. </div>
  66. <div class="stack-logo graphql-logo">
  67. <img src="{{ "logo/graphql-logo.png" | relURL }}">
  68. </div>
  69. <div class="stack-logo node-logo">
  70. <img src="{{ "logo/nodejs-logo.png" | relURL }}">
  71. </div>
  72. <div class="stack-logo nest-logo">
  73. <img src="{{ "logo/nest-logo.svg" | relURL }}">
  74. </div>
  75. </div>
  76. </div>
  77. </div>
  78. <div class="section-2">
  79. <div class="content">
  80. <div class="features">
  81. <div class="feature">
  82. <div class="feature-copy">
  83. <h3>De-coupled & Flexible</h3>
  84. <p class="lead">
  85. Vendure is a headless framework, meaning that it delivers content through its <a href="https://graphql.org/">GraphQL API</a>, leaving you free to
  86. implement your store-front applications in the technologies of your choice.
  87. </p>
  88. </div>
  89. <div class="feature-image">
  90. <img src="{{ "features-code.png" | relURL }}">
  91. </div>
  92. </div>
  93. <div class="feature">
  94. <div class="feature-copy">
  95. <h3>Made for Developers</h3>
  96. <p class="lead">
  97. Vendure makes developer productivity a top priority. The framework is written in TypeScript and is
  98. built on the npm ecosystem.
  99. </p>
  100. <p class="lead">
  101. The combination of TypeScript and GraphQL provides end-to-end type safety.
  102. </p>
  103. </div>
  104. <div class="feature-image">
  105. <img src="{{ "features-dev.png" | relURL }}">
  106. </div>
  107. </div>
  108. <div class="feature">
  109. <div class="feature-copy">
  110. <h3>Open Source</h3>
  111. <p class="lead">
  112. Vendure is available under the <a href="https://tldrlegal.com/license/mit-license">MIT license</a>.
  113. </p>
  114. <p class="lead">
  115. All development of the core framework is being done in the open on <a href="https://github.com/vendure-ecommerce/vendure">GitHub</a>.
  116. </p>
  117. </div>
  118. <div class="feature-image">
  119. <img src="{{ "features-oss.png" | relURL }}">
  120. </div>
  121. </div>
  122. </div>
  123. </div>
  124. </div>
  125. <div class="section-3">
  126. <div class="content">
  127. <h2>Features</h2>
  128. <div class="features">
  129. <ul class="feature-list">
  130. <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Products & variants</li>
  131. <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Stock management</li>
  132. <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">On-the-fly image resize & crop</li>
  133. <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Product facets & faceted search</li>
  134. <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Product categories / collections</li>
  135. <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Extensible product search via Elastic, Algolia etc.</li>
  136. <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Payment provider integrations</li>
  137. <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Shipping provider integrations</li>
  138. <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Tax calculations based on category and zone</li>
  139. <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Discounts and promotions</li>
  140. <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Multiple administrators with fine-grained permissions</li>
  141. <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Built-in admin interface</li>
  142. <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Multi-language support</li>
  143. <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Guest checkouts</li>
  144. </ul>
  145. </div>
  146. <p><small>The above features are either already implemented or planned for the beta release</small></p>
  147. </div>
  148. </div>
  149. <div class="section-4">
  150. <div class="content">
  151. <h2>Get Started</h2>
  152. <div class="install-code">
  153. <div class="highlight">
  154. <pre class="chroma"><code class="language-bash" data-lang="bash">$ npx @vendure/create my-shop</code></pre>
  155. </div>
  156. </div>
  157. <iframe src="https://player.vimeo.com/video/329126409"
  158. title="intro video"
  159. class="vimeo-player" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
  160. <div class="getting-started-link">
  161. <a href="{{ "docs/getting-started" | relURL }}" class="getting-started-button">
  162. <img src="{{ "svg/clr-icon-bolt-light.svg" | relURL }}"> Getting Started Guide
  163. </a>
  164. </div>
  165. </div>
  166. </div>
  167. {{ partial "footer" }}
  168. {{ template "_internal/google_analytics_async.html" . }}
  169. <script src="{{ "intro.js" | relURL }}"></script>
  170. </body>
  171. </html>