index.en.html 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. {{ partial "docs/html-head" . }}
  5. <link rel="stylesheet" href="{{ "intro.css" | absURL }}">
  6. </head>
  7. <body class="landing-page">
  8. {{ partial "top-bar" (dict "isLandingPage" true) }}
  9. {{ partial "intro" }}
  10. <div class="section-1">
  11. <div class="content">
  12. <h2>E-commerce for the Modern Web</h2>
  13. <p class="lead">Vendure is a new e-commerce framework built for the developers who are building the modern web.</p>
  14. <div class="stack-logos">
  15. <div class="stack-logo ts-logo">
  16. <img src="{{ "logo/ts-logo.svg" | absURL }}">
  17. </div>
  18. <div class="stack-logo graphql-logo">
  19. <img src="{{ "logo/graphql-logo.png" | absURL }}">
  20. </div>
  21. <div class="stack-logo node-logo">
  22. <img src="{{ "logo/nodejs-logo.png" | absURL }}">
  23. </div>
  24. <div class="stack-logo nest-logo">
  25. <img src="{{ "logo/nest-logo.svg" | absURL }}">
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  30. <div class="section-2">
  31. <div class="content">
  32. <div class="features">
  33. <div class="feature">
  34. <div class="feature-copy">
  35. <h3>De-coupled & Flexible</h3>
  36. <p class="lead">
  37. Vendure is a headless framework, meaning that it delivers content through its <a href="https://graphql.org/">GraphQL API</a>, leaving you free to
  38. implement your store-front applications in the technologies of your choice.
  39. </p>
  40. </div>
  41. <div class="feature-image">
  42. <img src="{{ "features-code.png" | absURL }}">
  43. </div>
  44. </div>
  45. <div class="feature">
  46. <div class="feature-copy">
  47. <h3>Made for Developers</h3>
  48. <p class="lead">
  49. Vendure makes developer productivity a top priority. The framework is written in TypeScript and is
  50. built on the npm ecosystem.
  51. </p>
  52. <p class="lead">
  53. The combination of TypeScript and GraphQL provides end-to-end type safety.
  54. </p>
  55. </div>
  56. <div class="feature-image">
  57. <img src="{{ "features-dev.png" | absURL }}">
  58. </div>
  59. </div>
  60. <div class="feature">
  61. <div class="feature-copy">
  62. <h3>Open Source</h3>
  63. <p class="lead">
  64. Vendure is available under the <a href="https://tldrlegal.com/license/mit-license">MIT license</a>.
  65. </p>
  66. <p class="lead">
  67. All development of the core framework is being done in the open on <a href="https://github.com/vendure-ecommerce/vendure">GitHub</a>.
  68. </p>
  69. </div>
  70. <div class="feature-image">
  71. <img src="{{ "features-oss.png" | absURL }}">
  72. </div>
  73. </div>
  74. </div>
  75. </div>
  76. </div>
  77. <div class="section-3">
  78. <div class="content">
  79. <h2>Get Started</h2>
  80. <div class="getting-started">
  81. <div class="install-code">
  82. <div class="highlight">
  83. <pre class="chroma"><code class="language-bash" data-lang="bash">$ npm install @vendure/core
  84. <span class="c1"># or</span>
  85. $ yarn add @vendure/core</code>
  86. </pre>
  87. </div>
  88. </div>
  89. <div class="getting-started-link">
  90. <div class='alert warning'>
  91. <p>
  92. <strong>Note</strong> Vendure is currently in <strong>alpha</strong>, which means it is not yet production-ready.
  93. </p>
  94. </div>
  95. <a href="{{ "docs/getting-started" | absURL }}" class="getting-started-button">
  96. <img src="{{ "svg/clr-icon-bolt-light.svg" | absURL }}"> Getting Started Guide
  97. </a>
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102. {{ partial "footer" }}
  103. <script src="{{ "intro.js" | absURL }}"></script>
  104. </body>
  105. </html>