remove redundant test pages

This commit is contained in:
Felix Roos 2023-12-25 15:45:49 +01:00
parent 0ed615a312
commit de4460a047
2 changed files with 0 additions and 63 deletions

View File

@ -1,32 +0,0 @@
---
import { MicroRepl } from '../../docs/MicroRepl'
---
<html lang="en" class="dark">
<head>
<title>Strudel Micro REPL</title>
<script src="@strudel/repl"></script>
</head>
<body>
<div class="p-4">
<p>MicroRepl:</p>
<MicroRepl client:load code={`n(run(4).sub(4))
.chord("<C^7#11 E^7#11>/16")
.dict('ireal')
.voicing()
.when("<1 0> 0@3", sub(note(12)))
.add(note("[12 | 0]*4"))
.attack(slider(0.511))
.decay(slider(0.466))
.sustain(slider(0.398))
.release(slider(0.443))
.s('sawtooth')
.lpa(sine.range(.1,.25).slow(12))
.lpenv(sine.range(0,4).slow(16))
.lpf(perlin.range(400,1000))
.add(note(perlin.range(0,.25)))
.vib(4).vibmod(.1)
.room(.75).size(8)`} />
</div>
</body>
</html>

View File

@ -1,31 +0,0 @@
<html lang="en" class="dark">
<head>
<title>Strudel Vanilla REPL</title>
<script src="@strudel/repl"></script>
</head>
<body>
<p>This is a REPL:</p>
<strudel-editor code={`s("bd")`}></strudel-editor>
<p>This is another REPL:</p>
<strudel-editor><!--
n(run(4).sub(4))
.chord("<C^7#11 E^7#11>/16")
.dict('ireal')
.voicing()
.when("<1 0> 0@3", sub(note(12)))
.add(note("[12 | 0]*4"))
.attack(slider(0.511))
.decay(slider(0.466))
.sustain(slider(0.398))
.release(slider(0.443))
.s('sawtooth')
.lpa(sine.range(.1,.25).slow(12))
.lpenv(sine.range(0,4).slow(16))
.lpf(perlin.range(400,1000))
.add(note(perlin.range(0,.25)))
.vib(4).vibmod(.1)
.room(.75).size(8)
--></strudel-editor>
</body>
</html>