+
+
+ {#if process.browser}
+
+
+
+
+ {#if mobile}
+
+ {/if}
+ {/if}
+
diff --git a/site/src/routes/gist/_utils.js b/site/src/routes/repl/_utils/body.js
similarity index 87%
rename from site/src/routes/gist/_utils.js
rename to site/src/routes/repl/_utils/body.js
index 8417031001..950208ab56 100644
--- a/site/src/routes/gist/_utils.js
+++ b/site/src/routes/repl/_utils/body.js
@@ -1,4 +1,4 @@
-export function body(req) {
+export default function body(req) {
return new Promise((fulfil, reject) => {
let str = '';
diff --git a/site/src/routes/gist/create.js b/site/src/routes/repl/create.json.js
similarity index 95%
rename from site/src/routes/gist/create.js
rename to site/src/routes/repl/create.json.js
index 82fe5a74cb..d0abaf2db3 100644
--- a/site/src/routes/gist/create.js
+++ b/site/src/routes/repl/create.json.js
@@ -1,5 +1,5 @@
import send from '@polka/send';
-import { body } from './_utils.js';
+import body from './_utils/body.js';
import { query } from '../../utils/db';
import { isUser } from '../../backend/auth';
diff --git a/site/src/routes/repl/index.svelte b/site/src/routes/repl/index.svelte
index d3b1e6bc01..0c7acfc9dc 100644
--- a/site/src/routes/repl/index.svelte
+++ b/site/src/routes/repl/index.svelte
@@ -1,238 +1,16 @@
-
-
-
-
-
-