This is a top-level element.
-And this is a nested component.
\ No newline at end of file
diff --git a/site/content/OLD.examples/parallax/App.svelte b/site/content/OLD.examples/parallax/App.svelte
deleted file mode 100644
index 38ffd716b5..0000000000
--- a/site/content/OLD.examples/parallax/App.svelte
+++ /dev/null
@@ -1,76 +0,0 @@
-
-
-
-
-
-
-
-
-
- (scroll down)
- parallax has never been this easy
-
-
-
diff --git a/site/content/OLD.examples/scoped-styles/App.svelte b/site/content/OLD.examples/scoped-styles/App.svelte
deleted file mode 100644
index c4d73176f0..0000000000
--- a/site/content/OLD.examples/scoped-styles/App.svelte
+++ /dev/null
@@ -1,11 +0,0 @@
-
- Big red Comic Sans
-
-
-
\ No newline at end of file
diff --git a/site/content/OLD.examples/self-references/App.svelte b/site/content/OLD.examples/self-references/App.svelte
deleted file mode 100644
index 2a579ace2d..0000000000
--- a/site/content/OLD.examples/self-references/App.svelte
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
- {node.name}
- {#if node.children}
- {#each node.children as child}
-
- {/each}
- {/if}
-
-
\ No newline at end of file
diff --git a/site/content/OLD.examples/transitions-custom/App.svelte b/site/content/OLD.examples/transitions-custom/App.svelte
deleted file mode 100644
index bee159e4c5..0000000000
--- a/site/content/OLD.examples/transitions-custom/App.svelte
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
- visible
-
-{#if visible}
-
- wheeee!!!!!
-
-{/if}
-
-
diff --git a/site/content/OLD.examples/transitions-fade/App.svelte b/site/content/OLD.examples/transitions-fade/App.svelte
deleted file mode 100644
index 528d495361..0000000000
--- a/site/content/OLD.examples/transitions-fade/App.svelte
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
- visible
-
-{#if visible}
- fades in and out
-{/if}
diff --git a/site/content/OLD.examples/transitions-fly/App.svelte b/site/content/OLD.examples/transitions-fly/App.svelte
deleted file mode 100644
index 43e4a1dd2d..0000000000
--- a/site/content/OLD.examples/transitions-fly/App.svelte
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
- visible
-
-{#if visible}
- flies 200 pixels up, slowly
-{/if}
diff --git a/site/content/OLD.examples/transitions-in-out/App.svelte b/site/content/OLD.examples/transitions-in-out/App.svelte
deleted file mode 100644
index 7b995bc04d..0000000000
--- a/site/content/OLD.examples/transitions-in-out/App.svelte
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
- visible
-
-{#if visible}
- flies up, fades out
-{/if}
diff --git a/site/content/examples/05-bindings/00-text-inputs/App.svelte b/site/content/examples/05-bindings/00-text-inputs/App.svelte
index 662785bfce..5eab79764a 100644
--- a/site/content/examples/05-bindings/00-text-inputs/App.svelte
+++ b/site/content/examples/05-bindings/00-text-inputs/App.svelte
@@ -1,9 +1,6 @@
-
-
-
-
-Hello {name}!
\ No newline at end of file
+
+Hello {name || 'stranger'}!
\ No newline at end of file
diff --git a/site/content/OLD.examples/svg-clock/App.svelte b/site/content/examples/11-svg/01-clock/App.svelte
similarity index 98%
rename from site/content/OLD.examples/svg-clock/App.svelte
rename to site/content/examples/11-svg/01-clock/App.svelte
index b83da1c203..49d3a7f809 100644
--- a/site/content/OLD.examples/svg-clock/App.svelte
+++ b/site/content/examples/11-svg/01-clock/App.svelte
@@ -20,6 +20,44 @@
});
+
+
@@ -63,35 +101,4 @@
-
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/site/content/examples/11-svg/01-clock/meta.json b/site/content/examples/11-svg/01-clock/meta.json
new file mode 100644
index 0000000000..ec7137feb6
--- /dev/null
+++ b/site/content/examples/11-svg/01-clock/meta.json
@@ -0,0 +1,3 @@
+{
+ "title": "Clock"
+}
\ No newline at end of file
diff --git a/site/content/OLD.examples/bar-chart/App.svelte b/site/content/examples/11-svg/02-bar-chart/App.svelte
similarity index 97%
rename from site/content/OLD.examples/bar-chart/App.svelte
rename to site/content/examples/11-svg/02-bar-chart/App.svelte
index b6be4d6b44..e0f27586c3 100644
--- a/site/content/OLD.examples/bar-chart/App.svelte
+++ b/site/content/examples/11-svg/02-bar-chart/App.svelte
@@ -78,7 +78,7 @@
-
US birthrate by year {width}/{height}
+ US birthrate by year
diff --git a/site/content/examples/11-svg/02-bar-chart/meta.json b/site/content/examples/11-svg/02-bar-chart/meta.json
new file mode 100644
index 0000000000..97ae2b671b
--- /dev/null
+++ b/site/content/examples/11-svg/02-bar-chart/meta.json
@@ -0,0 +1,3 @@
+{
+ "title": "Bar chart"
+}
\ No newline at end of file
diff --git a/site/content/OLD.examples/line-chart/App.svelte b/site/content/examples/11-svg/03-area-chart/App.svelte
similarity index 100%
rename from site/content/OLD.examples/line-chart/App.svelte
rename to site/content/examples/11-svg/03-area-chart/App.svelte
diff --git a/site/content/OLD.examples/line-chart/data.js b/site/content/examples/11-svg/03-area-chart/data.js
similarity index 100%
rename from site/content/OLD.examples/line-chart/data.js
rename to site/content/examples/11-svg/03-area-chart/data.js
diff --git a/site/content/examples/11-svg/03-area-chart/meta.json b/site/content/examples/11-svg/03-area-chart/meta.json
new file mode 100644
index 0000000000..3c8bb48a40
--- /dev/null
+++ b/site/content/examples/11-svg/03-area-chart/meta.json
@@ -0,0 +1,3 @@
+{
+ "title": "Area chart"
+}
\ No newline at end of file
diff --git a/site/content/OLD.examples/scatterplot/App.svelte b/site/content/examples/11-svg/04-scatterplot/App.svelte
similarity index 100%
rename from site/content/OLD.examples/scatterplot/App.svelte
rename to site/content/examples/11-svg/04-scatterplot/App.svelte
diff --git a/site/content/OLD.examples/scatterplot/Scatterplot.svelte b/site/content/examples/11-svg/04-scatterplot/Scatterplot.svelte
similarity index 100%
rename from site/content/OLD.examples/scatterplot/Scatterplot.svelte
rename to site/content/examples/11-svg/04-scatterplot/Scatterplot.svelte
diff --git a/site/content/OLD.examples/scatterplot/data.js b/site/content/examples/11-svg/04-scatterplot/data.js
similarity index 100%
rename from site/content/OLD.examples/scatterplot/data.js
rename to site/content/examples/11-svg/04-scatterplot/data.js
diff --git a/site/content/examples/11-svg/04-scatterplot/meta.json b/site/content/examples/11-svg/04-scatterplot/meta.json
new file mode 100644
index 0000000000..52a4c119bc
--- /dev/null
+++ b/site/content/examples/11-svg/04-scatterplot/meta.json
@@ -0,0 +1,3 @@
+{
+ "title": "Scatterplot"
+}
\ No newline at end of file
diff --git a/site/content/examples/11-svg/meta.json b/site/content/examples/11-svg/meta.json
new file mode 100644
index 0000000000..a26780dfc8
--- /dev/null
+++ b/site/content/examples/11-svg/meta.json
@@ -0,0 +1,3 @@
+{
+ "title": "SVG"
+}
\ No newline at end of file
diff --git a/site/content/examples/11-actions/00-actions/App.svelte b/site/content/examples/12-actions/00-actions/App.svelte
similarity index 100%
rename from site/content/examples/11-actions/00-actions/App.svelte
rename to site/content/examples/12-actions/00-actions/App.svelte
diff --git a/site/content/examples/11-actions/00-actions/meta.json b/site/content/examples/12-actions/00-actions/meta.json
similarity index 100%
rename from site/content/examples/11-actions/00-actions/meta.json
rename to site/content/examples/12-actions/00-actions/meta.json
diff --git a/site/content/examples/11-actions/00-actions/pannable.js b/site/content/examples/12-actions/00-actions/pannable.js
similarity index 100%
rename from site/content/examples/11-actions/00-actions/pannable.js
rename to site/content/examples/12-actions/00-actions/pannable.js
diff --git a/site/content/examples/11-actions/01-adding-parameters-to-actions/App.svelte b/site/content/examples/12-actions/01-adding-parameters-to-actions/App.svelte
similarity index 100%
rename from site/content/examples/11-actions/01-adding-parameters-to-actions/App.svelte
rename to site/content/examples/12-actions/01-adding-parameters-to-actions/App.svelte
diff --git a/site/content/examples/11-actions/01-adding-parameters-to-actions/meta.json b/site/content/examples/12-actions/01-adding-parameters-to-actions/meta.json
similarity index 100%
rename from site/content/examples/11-actions/01-adding-parameters-to-actions/meta.json
rename to site/content/examples/12-actions/01-adding-parameters-to-actions/meta.json
diff --git a/site/content/examples/11-actions/meta.json b/site/content/examples/12-actions/meta.json
similarity index 100%
rename from site/content/examples/11-actions/meta.json
rename to site/content/examples/12-actions/meta.json
diff --git a/site/content/examples/12-classes/00-classes/App.svelte b/site/content/examples/13-classes/00-classes/App.svelte
similarity index 100%
rename from site/content/examples/12-classes/00-classes/App.svelte
rename to site/content/examples/13-classes/00-classes/App.svelte
diff --git a/site/content/examples/12-classes/00-classes/meta.json b/site/content/examples/13-classes/00-classes/meta.json
similarity index 100%
rename from site/content/examples/12-classes/00-classes/meta.json
rename to site/content/examples/13-classes/00-classes/meta.json
diff --git a/site/content/examples/12-classes/01-class-shorthand/App.svelte b/site/content/examples/13-classes/01-class-shorthand/App.svelte
similarity index 100%
rename from site/content/examples/12-classes/01-class-shorthand/App.svelte
rename to site/content/examples/13-classes/01-class-shorthand/App.svelte
diff --git a/site/content/examples/12-classes/01-class-shorthand/meta.json b/site/content/examples/13-classes/01-class-shorthand/meta.json
similarity index 100%
rename from site/content/examples/12-classes/01-class-shorthand/meta.json
rename to site/content/examples/13-classes/01-class-shorthand/meta.json
diff --git a/site/content/examples/12-classes/meta.json b/site/content/examples/13-classes/meta.json
similarity index 100%
rename from site/content/examples/12-classes/meta.json
rename to site/content/examples/13-classes/meta.json
diff --git a/site/content/examples/13-composition/00-slots/App.svelte b/site/content/examples/14-composition/00-slots/App.svelte
similarity index 100%
rename from site/content/examples/13-composition/00-slots/App.svelte
rename to site/content/examples/14-composition/00-slots/App.svelte
diff --git a/site/content/examples/13-composition/00-slots/Box.svelte b/site/content/examples/14-composition/00-slots/Box.svelte
similarity index 100%
rename from site/content/examples/13-composition/00-slots/Box.svelte
rename to site/content/examples/14-composition/00-slots/Box.svelte
diff --git a/site/content/examples/13-composition/00-slots/meta.json b/site/content/examples/14-composition/00-slots/meta.json
similarity index 100%
rename from site/content/examples/13-composition/00-slots/meta.json
rename to site/content/examples/14-composition/00-slots/meta.json
diff --git a/site/content/examples/13-composition/01-slot-fallbacks/App.svelte b/site/content/examples/14-composition/01-slot-fallbacks/App.svelte
similarity index 100%
rename from site/content/examples/13-composition/01-slot-fallbacks/App.svelte
rename to site/content/examples/14-composition/01-slot-fallbacks/App.svelte
diff --git a/site/content/examples/13-composition/01-slot-fallbacks/Box.svelte b/site/content/examples/14-composition/01-slot-fallbacks/Box.svelte
similarity index 100%
rename from site/content/examples/13-composition/01-slot-fallbacks/Box.svelte
rename to site/content/examples/14-composition/01-slot-fallbacks/Box.svelte
diff --git a/site/content/examples/13-composition/01-slot-fallbacks/meta.json b/site/content/examples/14-composition/01-slot-fallbacks/meta.json
similarity index 100%
rename from site/content/examples/13-composition/01-slot-fallbacks/meta.json
rename to site/content/examples/14-composition/01-slot-fallbacks/meta.json
diff --git a/site/content/examples/13-composition/02-named-slots/App.svelte b/site/content/examples/14-composition/02-named-slots/App.svelte
similarity index 100%
rename from site/content/examples/13-composition/02-named-slots/App.svelte
rename to site/content/examples/14-composition/02-named-slots/App.svelte
diff --git a/site/content/examples/13-composition/02-named-slots/ContactCard.svelte b/site/content/examples/14-composition/02-named-slots/ContactCard.svelte
similarity index 100%
rename from site/content/examples/13-composition/02-named-slots/ContactCard.svelte
rename to site/content/examples/14-composition/02-named-slots/ContactCard.svelte
diff --git a/site/content/examples/13-composition/02-named-slots/meta.json b/site/content/examples/14-composition/02-named-slots/meta.json
similarity index 100%
rename from site/content/examples/13-composition/02-named-slots/meta.json
rename to site/content/examples/14-composition/02-named-slots/meta.json
diff --git a/site/content/examples/13-composition/03-slot-props/App.svelte b/site/content/examples/14-composition/03-slot-props/App.svelte
similarity index 100%
rename from site/content/examples/13-composition/03-slot-props/App.svelte
rename to site/content/examples/14-composition/03-slot-props/App.svelte
diff --git a/site/content/examples/13-composition/03-slot-props/Hoverable.svelte b/site/content/examples/14-composition/03-slot-props/Hoverable.svelte
similarity index 100%
rename from site/content/examples/13-composition/03-slot-props/Hoverable.svelte
rename to site/content/examples/14-composition/03-slot-props/Hoverable.svelte
diff --git a/site/content/examples/13-composition/03-slot-props/meta.json b/site/content/examples/14-composition/03-slot-props/meta.json
similarity index 100%
rename from site/content/examples/13-composition/03-slot-props/meta.json
rename to site/content/examples/14-composition/03-slot-props/meta.json
diff --git a/site/content/examples/13-composition/meta.json b/site/content/examples/14-composition/meta.json
similarity index 100%
rename from site/content/examples/13-composition/meta.json
rename to site/content/examples/14-composition/meta.json
diff --git a/site/content/examples/14-context/00-context-api/App.svelte b/site/content/examples/15-context/00-context-api/App.svelte
similarity index 100%
rename from site/content/examples/14-context/00-context-api/App.svelte
rename to site/content/examples/15-context/00-context-api/App.svelte
diff --git a/site/content/examples/14-context/00-context-api/Map.svelte b/site/content/examples/15-context/00-context-api/Map.svelte
similarity index 100%
rename from site/content/examples/14-context/00-context-api/Map.svelte
rename to site/content/examples/15-context/00-context-api/Map.svelte
diff --git a/site/content/examples/14-context/00-context-api/MapMarker.svelte b/site/content/examples/15-context/00-context-api/MapMarker.svelte
similarity index 100%
rename from site/content/examples/14-context/00-context-api/MapMarker.svelte
rename to site/content/examples/15-context/00-context-api/MapMarker.svelte
diff --git a/site/content/examples/14-context/00-context-api/mapbox.js b/site/content/examples/15-context/00-context-api/mapbox.js
similarity index 100%
rename from site/content/examples/14-context/00-context-api/mapbox.js
rename to site/content/examples/15-context/00-context-api/mapbox.js
diff --git a/site/content/examples/14-context/00-context-api/meta.json b/site/content/examples/15-context/00-context-api/meta.json
similarity index 100%
rename from site/content/examples/14-context/00-context-api/meta.json
rename to site/content/examples/15-context/00-context-api/meta.json
diff --git a/site/content/examples/14-context/meta.json b/site/content/examples/15-context/meta.json
similarity index 100%
rename from site/content/examples/14-context/meta.json
rename to site/content/examples/15-context/meta.json
diff --git a/site/content/examples/15-special-elements/00-svelte-self/App.svelte b/site/content/examples/16-special-elements/00-svelte-self/App.svelte
similarity index 100%
rename from site/content/examples/15-special-elements/00-svelte-self/App.svelte
rename to site/content/examples/16-special-elements/00-svelte-self/App.svelte
diff --git a/site/content/examples/15-special-elements/00-svelte-self/File.svelte b/site/content/examples/16-special-elements/00-svelte-self/File.svelte
similarity index 100%
rename from site/content/examples/15-special-elements/00-svelte-self/File.svelte
rename to site/content/examples/16-special-elements/00-svelte-self/File.svelte
diff --git a/site/content/examples/15-special-elements/00-svelte-self/Folder.svelte b/site/content/examples/16-special-elements/00-svelte-self/Folder.svelte
similarity index 100%
rename from site/content/examples/15-special-elements/00-svelte-self/Folder.svelte
rename to site/content/examples/16-special-elements/00-svelte-self/Folder.svelte
diff --git a/site/content/examples/15-special-elements/00-svelte-self/meta.json b/site/content/examples/16-special-elements/00-svelte-self/meta.json
similarity index 100%
rename from site/content/examples/15-special-elements/00-svelte-self/meta.json
rename to site/content/examples/16-special-elements/00-svelte-self/meta.json
diff --git a/site/content/examples/15-special-elements/01-svelte-component/App.svelte b/site/content/examples/16-special-elements/01-svelte-component/App.svelte
similarity index 100%
rename from site/content/examples/15-special-elements/01-svelte-component/App.svelte
rename to site/content/examples/16-special-elements/01-svelte-component/App.svelte
diff --git a/site/content/examples/15-special-elements/01-svelte-component/BlueThing.svelte b/site/content/examples/16-special-elements/01-svelte-component/BlueThing.svelte
similarity index 100%
rename from site/content/examples/15-special-elements/01-svelte-component/BlueThing.svelte
rename to site/content/examples/16-special-elements/01-svelte-component/BlueThing.svelte
diff --git a/site/content/examples/15-special-elements/01-svelte-component/GreenThing.svelte b/site/content/examples/16-special-elements/01-svelte-component/GreenThing.svelte
similarity index 100%
rename from site/content/examples/15-special-elements/01-svelte-component/GreenThing.svelte
rename to site/content/examples/16-special-elements/01-svelte-component/GreenThing.svelte
diff --git a/site/content/examples/15-special-elements/01-svelte-component/RedThing.svelte b/site/content/examples/16-special-elements/01-svelte-component/RedThing.svelte
similarity index 100%
rename from site/content/examples/15-special-elements/01-svelte-component/RedThing.svelte
rename to site/content/examples/16-special-elements/01-svelte-component/RedThing.svelte
diff --git a/site/content/examples/15-special-elements/01-svelte-component/meta.json b/site/content/examples/16-special-elements/01-svelte-component/meta.json
similarity index 100%
rename from site/content/examples/15-special-elements/01-svelte-component/meta.json
rename to site/content/examples/16-special-elements/01-svelte-component/meta.json
diff --git a/site/content/examples/15-special-elements/02-svelte-window/App.svelte b/site/content/examples/16-special-elements/02-svelte-window/App.svelte
similarity index 100%
rename from site/content/examples/15-special-elements/02-svelte-window/App.svelte
rename to site/content/examples/16-special-elements/02-svelte-window/App.svelte
diff --git a/site/content/examples/15-special-elements/02-svelte-window/meta.json b/site/content/examples/16-special-elements/02-svelte-window/meta.json
similarity index 100%
rename from site/content/examples/15-special-elements/02-svelte-window/meta.json
rename to site/content/examples/16-special-elements/02-svelte-window/meta.json
diff --git a/site/content/examples/15-special-elements/03-svelte-window-bindings/App.svelte b/site/content/examples/16-special-elements/03-svelte-window-bindings/App.svelte
similarity index 94%
rename from site/content/examples/15-special-elements/03-svelte-window-bindings/App.svelte
rename to site/content/examples/16-special-elements/03-svelte-window-bindings/App.svelte
index a4b6f927b7..3dbfd43f21 100644
--- a/site/content/examples/15-special-elements/03-svelte-window-bindings/App.svelte
+++ b/site/content/examples/16-special-elements/03-svelte-window-bindings/App.svelte
@@ -80,5 +80,9 @@
padding: 50vh 0 0 0;
}
- :global(body) { margin: 0; padding: 0; }
+ :global(body) {
+ margin: 0;
+ padding: 0;
+ background-color: rgb(253, 174, 51);
+ }
diff --git a/site/content/examples/15-special-elements/03-svelte-window-bindings/meta.json b/site/content/examples/16-special-elements/03-svelte-window-bindings/meta.json
similarity index 100%
rename from site/content/examples/15-special-elements/03-svelte-window-bindings/meta.json
rename to site/content/examples/16-special-elements/03-svelte-window-bindings/meta.json
diff --git a/site/content/examples/15-special-elements/04-svelte-body/App.svelte b/site/content/examples/16-special-elements/04-svelte-body/App.svelte
similarity index 100%
rename from site/content/examples/15-special-elements/04-svelte-body/App.svelte
rename to site/content/examples/16-special-elements/04-svelte-body/App.svelte
diff --git a/site/content/examples/15-special-elements/04-svelte-body/meta.json b/site/content/examples/16-special-elements/04-svelte-body/meta.json
similarity index 100%
rename from site/content/examples/15-special-elements/04-svelte-body/meta.json
rename to site/content/examples/16-special-elements/04-svelte-body/meta.json
diff --git a/site/content/examples/15-special-elements/05-svelte-head/App.svelte b/site/content/examples/16-special-elements/05-svelte-head/App.svelte
similarity index 100%
rename from site/content/examples/15-special-elements/05-svelte-head/App.svelte
rename to site/content/examples/16-special-elements/05-svelte-head/App.svelte
diff --git a/site/content/examples/15-special-elements/05-svelte-head/meta.json b/site/content/examples/16-special-elements/05-svelte-head/meta.json
similarity index 100%
rename from site/content/examples/15-special-elements/05-svelte-head/meta.json
rename to site/content/examples/16-special-elements/05-svelte-head/meta.json
diff --git a/site/content/examples/15-special-elements/06-svelte-options/App.svelte b/site/content/examples/16-special-elements/06-svelte-options/App.svelte
similarity index 100%
rename from site/content/examples/15-special-elements/06-svelte-options/App.svelte
rename to site/content/examples/16-special-elements/06-svelte-options/App.svelte
diff --git a/site/content/examples/15-special-elements/06-svelte-options/Square.svelte b/site/content/examples/16-special-elements/06-svelte-options/Square.svelte
similarity index 100%
rename from site/content/examples/15-special-elements/06-svelte-options/Square.svelte
rename to site/content/examples/16-special-elements/06-svelte-options/Square.svelte
diff --git a/site/content/examples/15-special-elements/06-svelte-options/meta.json b/site/content/examples/16-special-elements/06-svelte-options/meta.json
similarity index 100%
rename from site/content/examples/15-special-elements/06-svelte-options/meta.json
rename to site/content/examples/16-special-elements/06-svelte-options/meta.json
diff --git a/site/content/examples/15-special-elements/meta.json b/site/content/examples/16-special-elements/meta.json
similarity index 100%
rename from site/content/examples/15-special-elements/meta.json
rename to site/content/examples/16-special-elements/meta.json
diff --git a/site/content/examples/16-module-context/00-sharing-code/App.svelte b/site/content/examples/17-module-context/00-sharing-code/App.svelte
similarity index 100%
rename from site/content/examples/16-module-context/00-sharing-code/App.svelte
rename to site/content/examples/17-module-context/00-sharing-code/App.svelte
diff --git a/site/content/examples/16-module-context/00-sharing-code/AudioPlayer.svelte b/site/content/examples/17-module-context/00-sharing-code/AudioPlayer.svelte
similarity index 100%
rename from site/content/examples/16-module-context/00-sharing-code/AudioPlayer.svelte
rename to site/content/examples/17-module-context/00-sharing-code/AudioPlayer.svelte
diff --git a/site/content/examples/16-module-context/00-sharing-code/meta.json b/site/content/examples/17-module-context/00-sharing-code/meta.json
similarity index 100%
rename from site/content/examples/16-module-context/00-sharing-code/meta.json
rename to site/content/examples/17-module-context/00-sharing-code/meta.json
diff --git a/site/content/examples/16-module-context/01-module-exports/App.svelte b/site/content/examples/17-module-context/01-module-exports/App.svelte
similarity index 100%
rename from site/content/examples/16-module-context/01-module-exports/App.svelte
rename to site/content/examples/17-module-context/01-module-exports/App.svelte
diff --git a/site/content/examples/16-module-context/01-module-exports/AudioPlayer.svelte b/site/content/examples/17-module-context/01-module-exports/AudioPlayer.svelte
similarity index 100%
rename from site/content/examples/16-module-context/01-module-exports/AudioPlayer.svelte
rename to site/content/examples/17-module-context/01-module-exports/AudioPlayer.svelte
diff --git a/site/content/examples/16-module-context/01-module-exports/meta.json b/site/content/examples/17-module-context/01-module-exports/meta.json
similarity index 100%
rename from site/content/examples/16-module-context/01-module-exports/meta.json
rename to site/content/examples/17-module-context/01-module-exports/meta.json
diff --git a/site/content/examples/16-module-context/meta.json b/site/content/examples/17-module-context/meta.json
similarity index 100%
rename from site/content/examples/16-module-context/meta.json
rename to site/content/examples/17-module-context/meta.json
diff --git a/site/content/examples/17-debugging/00-debug/App.svelte b/site/content/examples/18-debugging/00-debug/App.svelte
similarity index 100%
rename from site/content/examples/17-debugging/00-debug/App.svelte
rename to site/content/examples/18-debugging/00-debug/App.svelte
diff --git a/site/content/examples/17-debugging/00-debug/meta.json b/site/content/examples/18-debugging/00-debug/meta.json
similarity index 100%
rename from site/content/examples/17-debugging/00-debug/meta.json
rename to site/content/examples/18-debugging/00-debug/meta.json
diff --git a/site/content/examples/17-debugging/meta.json b/site/content/examples/18-debugging/meta.json
similarity index 100%
rename from site/content/examples/17-debugging/meta.json
rename to site/content/examples/18-debugging/meta.json
diff --git a/site/content/examples/18-7guis/01-7guis-counter/App.svelte b/site/content/examples/19-7guis/01-7guis-counter/App.svelte
similarity index 100%
rename from site/content/examples/18-7guis/01-7guis-counter/App.svelte
rename to site/content/examples/19-7guis/01-7guis-counter/App.svelte
diff --git a/site/content/examples/18-7guis/01-7guis-counter/meta.json b/site/content/examples/19-7guis/01-7guis-counter/meta.json
similarity index 100%
rename from site/content/examples/18-7guis/01-7guis-counter/meta.json
rename to site/content/examples/19-7guis/01-7guis-counter/meta.json
diff --git a/site/content/examples/18-7guis/02-7guis-temperature/App.svelte b/site/content/examples/19-7guis/02-7guis-temperature/App.svelte
similarity index 100%
rename from site/content/examples/18-7guis/02-7guis-temperature/App.svelte
rename to site/content/examples/19-7guis/02-7guis-temperature/App.svelte
diff --git a/site/content/examples/18-7guis/02-7guis-temperature/meta.json b/site/content/examples/19-7guis/02-7guis-temperature/meta.json
similarity index 100%
rename from site/content/examples/18-7guis/02-7guis-temperature/meta.json
rename to site/content/examples/19-7guis/02-7guis-temperature/meta.json
diff --git a/site/content/examples/18-7guis/03-7guis-flight-booker/App.svelte b/site/content/examples/19-7guis/03-7guis-flight-booker/App.svelte
similarity index 100%
rename from site/content/examples/18-7guis/03-7guis-flight-booker/App.svelte
rename to site/content/examples/19-7guis/03-7guis-flight-booker/App.svelte
diff --git a/site/content/examples/18-7guis/03-7guis-flight-booker/meta.json b/site/content/examples/19-7guis/03-7guis-flight-booker/meta.json
similarity index 100%
rename from site/content/examples/18-7guis/03-7guis-flight-booker/meta.json
rename to site/content/examples/19-7guis/03-7guis-flight-booker/meta.json
diff --git a/site/content/examples/18-7guis/04-7guis-timer/App.svelte b/site/content/examples/19-7guis/04-7guis-timer/App.svelte
similarity index 100%
rename from site/content/examples/18-7guis/04-7guis-timer/App.svelte
rename to site/content/examples/19-7guis/04-7guis-timer/App.svelte
diff --git a/site/content/examples/18-7guis/04-7guis-timer/meta.json b/site/content/examples/19-7guis/04-7guis-timer/meta.json
similarity index 100%
rename from site/content/examples/18-7guis/04-7guis-timer/meta.json
rename to site/content/examples/19-7guis/04-7guis-timer/meta.json
diff --git a/site/content/examples/18-7guis/05-7guis-crud/App.svelte b/site/content/examples/19-7guis/05-7guis-crud/App.svelte
similarity index 100%
rename from site/content/examples/18-7guis/05-7guis-crud/App.svelte
rename to site/content/examples/19-7guis/05-7guis-crud/App.svelte
diff --git a/site/content/examples/18-7guis/05-7guis-crud/meta.json b/site/content/examples/19-7guis/05-7guis-crud/meta.json
similarity index 100%
rename from site/content/examples/18-7guis/05-7guis-crud/meta.json
rename to site/content/examples/19-7guis/05-7guis-crud/meta.json
diff --git a/site/content/examples/18-7guis/06-7guis-circles/App.svelte b/site/content/examples/19-7guis/06-7guis-circles/App.svelte
similarity index 100%
rename from site/content/examples/18-7guis/06-7guis-circles/App.svelte
rename to site/content/examples/19-7guis/06-7guis-circles/App.svelte
diff --git a/site/content/examples/18-7guis/06-7guis-circles/meta.json b/site/content/examples/19-7guis/06-7guis-circles/meta.json
similarity index 100%
rename from site/content/examples/18-7guis/06-7guis-circles/meta.json
rename to site/content/examples/19-7guis/06-7guis-circles/meta.json
diff --git a/site/content/examples/18-7guis/meta.json b/site/content/examples/19-7guis/meta.json
similarity index 100%
rename from site/content/examples/18-7guis/meta.json
rename to site/content/examples/19-7guis/meta.json
diff --git a/site/content/tutorial/06-bindings/01-text-inputs/app-a/App.svelte b/site/content/tutorial/06-bindings/01-text-inputs/app-a/App.svelte
index d3cf1a44ed..f1c03071ed 100644
--- a/site/content/tutorial/06-bindings/01-text-inputs/app-a/App.svelte
+++ b/site/content/tutorial/06-bindings/01-text-inputs/app-a/App.svelte
@@ -2,8 +2,6 @@
let name = 'world';
-
-
-
+
Hello {name}!
\ No newline at end of file
diff --git a/site/content/tutorial/06-bindings/01-text-inputs/app-b/App.svelte b/site/content/tutorial/06-bindings/01-text-inputs/app-b/App.svelte
index 662785bfce..89dd54a709 100644
--- a/site/content/tutorial/06-bindings/01-text-inputs/app-b/App.svelte
+++ b/site/content/tutorial/06-bindings/01-text-inputs/app-b/App.svelte
@@ -2,8 +2,6 @@
let name = 'world';
-
-
-
+
Hello {name}!
\ No newline at end of file
diff --git a/site/content/tutorial/16-special-elements/04-svelte-window-bindings/app-a/App.svelte b/site/content/tutorial/16-special-elements/04-svelte-window-bindings/app-a/App.svelte
index 480ba4419e..fc6725e894 100644
--- a/site/content/tutorial/16-special-elements/04-svelte-window-bindings/app-a/App.svelte
+++ b/site/content/tutorial/16-special-elements/04-svelte-window-bindings/app-a/App.svelte
@@ -80,5 +80,9 @@
padding: 50vh 0 0 0;
}
- :global(body) { margin: 0; padding: 0; }
+ :global(body) {
+ margin: 0;
+ padding: 0;
+ background-color: rgb(253, 174, 51);
+ }
diff --git a/site/content/tutorial/16-special-elements/04-svelte-window-bindings/app-b/App.svelte b/site/content/tutorial/16-special-elements/04-svelte-window-bindings/app-b/App.svelte
index a4b6f927b7..3dbfd43f21 100644
--- a/site/content/tutorial/16-special-elements/04-svelte-window-bindings/app-b/App.svelte
+++ b/site/content/tutorial/16-special-elements/04-svelte-window-bindings/app-b/App.svelte
@@ -80,5 +80,9 @@
padding: 50vh 0 0 0;
}
- :global(body) { margin: 0; padding: 0; }
+ :global(body) {
+ margin: 0;
+ padding: 0;
+ background-color: rgb(253, 174, 51);
+ }
diff --git a/site/static/examples/thumbnails/bar-chart.png b/site/static/examples/thumbnails/bar-chart.png
new file mode 100644
index 0000000000..178bf4d92c
Binary files /dev/null and b/site/static/examples/thumbnails/bar-chart.png differ
diff --git a/site/static/examples/thumbnails/clock.png b/site/static/examples/thumbnails/clock.png
new file mode 100644
index 0000000000..3f2b2b0d3e
Binary files /dev/null and b/site/static/examples/thumbnails/clock.png differ
diff --git a/site/static/examples/thumbnails/scatterplot.png b/site/static/examples/thumbnails/scatterplot.png
new file mode 100644
index 0000000000..b52b3a4d42
Binary files /dev/null and b/site/static/examples/thumbnails/scatterplot.png differ