diff --git a/src/pages/index.md b/src/pages/index.md index 2511961b..40228137 100644 --- a/src/pages/index.md +++ b/src/pages/index.md @@ -20,7 +20,7 @@ imports:
Hybrid Routing html.svg -

Greenwood is HTML first by design. Start from just an index.html file or leverage hybrid, file-system based routing to easily achieve static and dynamic pages side-by-side. Single Page Applications (SPA) also supported.

+

Greenwood is HTML first by design. Start from just an index.html file or leverage hybrid, file-system based routing to easily achieve static and dynamic pages side-by-side. Single Page Applications (SPA) also supported.

```shell src/ @@ -39,7 +39,7 @@ imports:
Server Rendering build-ssg.svg -

Web Components are not only a great component model, but also a great templating model for generating static HTML. Below is a dynamic page in Greenwood powered by the Custom Elements API and server-rendering an imported custom element.

+

Web Components are not only a great component model, but also a great templating model for generating static HTML. Below is a dynamic page in Greenwood powered by the Custom Elements API and server-rendering an imported custom element.

```js // src/pages/products.js @@ -79,7 +79,7 @@ imports:
Web Components web-components.svg -

Greenwood makes it possible to author real isomorphic Web Components, using Light or Shadow DOM, re-using that same definition across the server and client side. Combined with Web APIs like Constructable Stylesheets and Import Attributes, Web Components make for a compelling solution as the web's own component model.

+

Greenwood makes it possible to author real isomorphic Web Components, using Light or Shadow DOM, re-using that same definition across the client and the server. Combined with Web APIs like Constructable Stylesheets and Import Attributes, Web Components make for a compelling solution as the web's own component model.

```js // src/components/card.js @@ -119,7 +119,7 @@ imports:
API Routes api-routes.svg -

Need client side data fetching or mutations? Greenwood provides API routes out of the box that are fully invested in web standards like Fetch and FormData. Of course it is all fully compatible with server-rendering Web Components; a perfect companion for HTML over the wire solutions!

+

Need client side data fetching or mutations? Greenwood provides API routes out of the box that are fully invested in web standards like Fetch and FormData. Of course it is all fully compatible with server-rendering Web Components; a perfect companion for HTML over the wire solutions!

```js // src/pages/api/search.js