From ea1b2252fcdb28b3bdeecffead917b4fa4974c69 Mon Sep 17 00:00:00 2001 From: Felix Roos Date: Thu, 9 Feb 2023 21:42:48 +0100 Subject: [PATCH] remove unused descriptions + fix some titles + comment out unfinished packages page + start offline page --- website/src/config.ts | 5 +++-- website/src/pages/functions/intro.mdx | 2 +- website/src/pages/learn/accumulation.mdx | 1 - website/src/pages/learn/code.mdx | 1 - website/src/pages/learn/effects.mdx | 1 - website/src/pages/learn/factories.mdx | 1 - website/src/pages/learn/getting-started.mdx | 1 - website/src/pages/learn/input-output.mdx | 3 +-- website/src/pages/learn/notes.mdx | 1 - website/src/pages/learn/pwa.mdx | 9 +++++++++ website/src/pages/learn/samples.mdx | 3 +-- website/src/pages/learn/signals.mdx | 3 +-- website/src/pages/learn/sounds.mdx | 1 - website/src/pages/learn/synths.mdx | 1 - 14 files changed, 16 insertions(+), 17 deletions(-) create mode 100644 website/src/pages/learn/pwa.mdx diff --git a/website/src/config.ts b/website/src/config.ts index 6fe76052..26273dba 100644 --- a/website/src/config.ts +++ b/website/src/config.ts @@ -65,16 +65,17 @@ export const SIDEBAR: Sidebar = { { text: 'Tonal Modifiers', link: 'learn/tonal' }, ], More: [ + { text: 'MIDI & OSC', link: 'learn/input-output' }, + { text: 'Offline', link: 'learn/pwa' }, { text: 'Patterns', link: 'technical-manual/patterns' }, { text: 'Pattern Alignment', link: 'technical-manual/alignment' }, - { text: 'MIDI & OSC', link: 'learn/input-output' }, { text: 'Strudel vs Tidal', link: 'learn/strudel-vs-tidal' }, ], Development: [ { text: 'REPL', link: 'technical-manual/repl' }, { text: 'Docs', link: 'technical-manual/docs' }, { text: 'Testing', link: 'technical-manual/testing' }, - { text: 'Packages', link: 'technical-manual/packages' }, + // { text: 'Packages', link: 'technical-manual/packages' }, // { text: 'Internals', link: 'technical-manual/internals' }, ], }, diff --git a/website/src/pages/functions/intro.mdx b/website/src/pages/functions/intro.mdx index bed3cb37..6bbd26b9 100644 --- a/website/src/pages/functions/intro.mdx +++ b/website/src/pages/functions/intro.mdx @@ -1,5 +1,5 @@ --- -title: Introduction +title: JavaScript API layout: ../../layouts/MainLayout.astro --- diff --git a/website/src/pages/learn/accumulation.mdx b/website/src/pages/learn/accumulation.mdx index 71761387..c442e87b 100644 --- a/website/src/pages/learn/accumulation.mdx +++ b/website/src/pages/learn/accumulation.mdx @@ -1,6 +1,5 @@ --- title: Accumulation Modifiers -description: Strudel Tutorial - Coding syntax layout: ../../layouts/MainLayout.astro --- diff --git a/website/src/pages/learn/code.mdx b/website/src/pages/learn/code.mdx index 7be95ed3..d10e1f64 100644 --- a/website/src/pages/learn/code.mdx +++ b/website/src/pages/learn/code.mdx @@ -1,6 +1,5 @@ --- title: Coding syntax -description: Strudel Tutorial - Coding syntax layout: ../../layouts/MainLayout.astro --- diff --git a/website/src/pages/learn/effects.mdx b/website/src/pages/learn/effects.mdx index afe1c63c..7fc0a77c 100644 --- a/website/src/pages/learn/effects.mdx +++ b/website/src/pages/learn/effects.mdx @@ -1,6 +1,5 @@ --- title: Audio effects -description: Strudel Tutorial - Audio effects layout: ../../layouts/MainLayout.astro --- diff --git a/website/src/pages/learn/factories.mdx b/website/src/pages/learn/factories.mdx index 7a7256ec..86598cf2 100644 --- a/website/src/pages/learn/factories.mdx +++ b/website/src/pages/learn/factories.mdx @@ -1,6 +1,5 @@ --- title: Pattern Constructors -description: Strudel Tutorial layout: ../../layouts/MainLayout.astro --- diff --git a/website/src/pages/learn/getting-started.mdx b/website/src/pages/learn/getting-started.mdx index 3f2868f1..3f41c859 100644 --- a/website/src/pages/learn/getting-started.mdx +++ b/website/src/pages/learn/getting-started.mdx @@ -1,6 +1,5 @@ --- title: Getting Started -description: Strudel Tutorial - Getting Started layout: ../../layouts/MainLayout.astro --- diff --git a/website/src/pages/learn/input-output.mdx b/website/src/pages/learn/input-output.mdx index b7766719..68233159 100644 --- a/website/src/pages/learn/input-output.mdx +++ b/website/src/pages/learn/input-output.mdx @@ -1,6 +1,5 @@ --- -title: Other Outptuts -description: Strudel Tutorial +title: MIDI & OSC layout: ../../layouts/MainLayout.astro --- diff --git a/website/src/pages/learn/notes.mdx b/website/src/pages/learn/notes.mdx index e2d2c7bb..42c54174 100644 --- a/website/src/pages/learn/notes.mdx +++ b/website/src/pages/learn/notes.mdx @@ -1,6 +1,5 @@ --- title: Notes -description: Strudel Tutorial - Notes layout: ../../layouts/MainLayout.astro --- diff --git a/website/src/pages/learn/pwa.mdx b/website/src/pages/learn/pwa.mdx new file mode 100644 index 00000000..ab2c68f3 --- /dev/null +++ b/website/src/pages/learn/pwa.mdx @@ -0,0 +1,9 @@ +--- +title: Offline +layout: ../../layouts/MainLayout.astro +--- + +# Using Strudel Offline + +You can use Strudel even without a network! When you first visit the [Strudel REPL](strudel.tidalcycles.org/), +your browser will download the whole web app including documentation. diff --git a/website/src/pages/learn/samples.mdx b/website/src/pages/learn/samples.mdx index 5ad0c0e0..4720e5fa 100644 --- a/website/src/pages/learn/samples.mdx +++ b/website/src/pages/learn/samples.mdx @@ -1,6 +1,5 @@ --- -title: Notes -description: Strudel Tutorial - Notes +title: Samples layout: ../../layouts/MainLayout.astro --- diff --git a/website/src/pages/learn/signals.mdx b/website/src/pages/learn/signals.mdx index 0cf0f58e..79f255b0 100644 --- a/website/src/pages/learn/signals.mdx +++ b/website/src/pages/learn/signals.mdx @@ -1,6 +1,5 @@ --- -title: What is Strudel? -description: Strudel Tutorial +title: Signals layout: ../../layouts/MainLayout.astro --- diff --git a/website/src/pages/learn/sounds.mdx b/website/src/pages/learn/sounds.mdx index f80f51be..a17c2d0c 100644 --- a/website/src/pages/learn/sounds.mdx +++ b/website/src/pages/learn/sounds.mdx @@ -1,6 +1,5 @@ --- title: Sounds -description: Strudel Tutorial - Sounds layout: ../../layouts/MainLayout.astro --- diff --git a/website/src/pages/learn/synths.mdx b/website/src/pages/learn/synths.mdx index 69c45394..9b5b1c28 100644 --- a/website/src/pages/learn/synths.mdx +++ b/website/src/pages/learn/synths.mdx @@ -1,6 +1,5 @@ --- title: Synths -description: Strudel Tutorial - Synths layout: ../../layouts/MainLayout.astro ---