| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- {{ partial "docs/html-head" . }}
- <link rel="stylesheet" href="{{ "intro.css" | relURL }}">
- {{ template "_internal/opengraph.html" . }}
- {{ template "_internal/twitter_cards.html" . }}
- </head>
- <body class="landing-page">
- {{ partial "top-bar" (dict "isLandingPage" true) }}
- {{ partial "intro" }}
- <div class="section-1">
- <div class="content">
- <h2>E-commerce for the Modern Web</h2>
- <div class="graphql-playground-widget">
- <div class="graphql-playground-tab" data-name="Product List">
- query {
- products(options: { skip: 0 take: 3 }) {
- totalItems
- items {
- name
- variants {
- sku
- name
- price
- }
- }
- }
- }
- </div>
- <div class="graphql-playground-tab" data-name="Product Search">
- query {
- search(input: { term: "camera" }) {
- items {
- sku
- productName
- }
- }
- }
- </div>
- <div class="graphql-playground-tab" data-name="Add To Order">
- mutation {
- addItemToOrder(productVariantId: 5 quantity: 1) {
- code
- total
- state
- lines {
- productVariant {
- id
- name
- }
- unitPrice
- quantity
- totalPrice
- }
- }
- }
- </div>
- </div>
- <p class="lead">Vendure is a new e-commerce framework built for the developers who are building the modern web.<br>
- <img src="{{ "svg/clr-icon-book-light.svg" | relURL }}" alt="check icon"> Read: <a href="{{ "blog/introducing-vendure" | relURL }}">Introducing Vendure</a></p>
- <div class="stack-logos">
- <div class="stack-logo ts-logo">
- <img src="{{ "logo/ts-logo.svg" | relURL }}">
- </div>
- <div class="stack-logo graphql-logo">
- <img src="{{ "logo/graphql-logo.png" | relURL }}">
- </div>
- <div class="stack-logo node-logo">
- <img src="{{ "logo/nodejs-logo.png" | relURL }}">
- </div>
- <div class="stack-logo nest-logo">
- <img src="{{ "logo/nest-logo.svg" | relURL }}">
- </div>
- </div>
- </div>
- </div>
- <div class="section-2">
- <div class="content">
- <div class="features">
- <div class="feature">
- <div class="feature-copy">
- <h3>De-coupled & Flexible</h3>
- <p class="lead">
- Vendure is a headless framework, meaning that it delivers content through its <a href="https://graphql.org/">GraphQL API</a>, leaving you free to
- implement your store-front applications in the technologies of your choice.
- </p>
- </div>
- <div class="feature-image">
- <img src="{{ "features-code.png" | relURL }}">
- </div>
- </div>
- <div class="feature">
- <div class="feature-copy">
- <h3>Made for Developers</h3>
- <p class="lead">
- Vendure makes developer productivity a top priority. The framework is written in TypeScript and is
- built on the npm ecosystem.
- </p>
- <p class="lead">
- The combination of TypeScript and GraphQL provides end-to-end type safety.
- </p>
- </div>
- <div class="feature-image">
- <img src="{{ "features-dev.png" | relURL }}">
- </div>
- </div>
- <div class="feature">
- <div class="feature-copy">
- <h3>Open Source</h3>
- <p class="lead">
- Vendure is available under the <a href="https://tldrlegal.com/license/mit-license">MIT license</a>.
- </p>
- <p class="lead">
- All development of the core framework is being done in the open on <a href="https://github.com/vendure-ecommerce/vendure">GitHub</a>.
- </p>
- </div>
- <div class="feature-image">
- <img src="{{ "features-oss.png" | relURL }}">
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="section-3">
- <div class="content">
- <h2>Features</h2>
- <div class="features">
- <ul class="feature-list">
- <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Products & variants</li>
- <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Stock management</li>
- <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">On-the-fly image resize & crop</li>
- <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Product facets & faceted search</li>
- <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Product categories / collections</li>
- <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Extensible product search via Elastic, Algolia etc.</li>
- <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Payment provider integrations</li>
- <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Shipping provider integrations</li>
- <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Tax calculations based on category and zone</li>
- <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Discounts and promotions</li>
- <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Multiple administrators with fine-grained permissions</li>
- <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Built-in admin interface</li>
- <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Multi-language support</li>
- <li><img src="{{ "svg/clr-icon-check-brand.svg" | relURL }}" alt="check icon">Guest checkouts</li>
- </ul>
- </div>
- <p><small>The above features are either already implemented or planned for the beta release</small></p>
- </div>
- </div>
- <div class="section-4">
- <div class="content">
- <h2>Get Started</h2>
- <div class="install-code">
- <div class="highlight">
- <pre class="chroma"><code class="language-bash" data-lang="bash">$ npx @vendure/create my-shop</code></pre>
- </div>
- </div>
- <iframe src="https://player.vimeo.com/video/329126409"
- title="intro video"
- class="vimeo-player" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
- <div class="getting-started-link">
- <a href="{{ "docs/getting-started" | relURL }}" class="getting-started-button">
- <img src="{{ "svg/clr-icon-bolt-light.svg" | relURL }}"> Getting Started Guide
- </a>
- </div>
- </div>
- </div>
- {{ partial "footer" }}
- {{ template "_internal/google_analytics_async.html" . }}
- <script src="{{ "intro.js" | relURL }}"></script>
- </body>
- </html>
|