From 2d6466050b1c6c7ef3571b80e2775857d3be0091 Mon Sep 17 00:00:00 2001 From: Rune Harlyk Date: Sat, 24 Aug 2024 21:05:33 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A6=84=20Adds=20route=20for=20changing=20?= =?UTF-8?q?robot=20connection?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/routes/connection/+page.svelte | 7 ++++++ app/src/routes/connection/+page.ts | 7 ++++++ app/src/routes/connection/Connection.svelte | 25 +++++++++++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 app/src/routes/connection/+page.svelte create mode 100644 app/src/routes/connection/+page.ts create mode 100644 app/src/routes/connection/Connection.svelte diff --git a/app/src/routes/connection/+page.svelte b/app/src/routes/connection/+page.svelte new file mode 100644 index 0000000..71cb700 --- /dev/null +++ b/app/src/routes/connection/+page.svelte @@ -0,0 +1,7 @@ + + +
+ +
diff --git a/app/src/routes/connection/+page.ts b/app/src/routes/connection/+page.ts new file mode 100644 index 0000000..edd2443 --- /dev/null +++ b/app/src/routes/connection/+page.ts @@ -0,0 +1,7 @@ +import type { PageLoad } from './$types'; + +export const load = (async () => { + return { + title: 'Connection' + }; +}) satisfies PageLoad; diff --git a/app/src/routes/connection/Connection.svelte b/app/src/routes/connection/Connection.svelte new file mode 100644 index 0000000..586bd0e --- /dev/null +++ b/app/src/routes/connection/Connection.svelte @@ -0,0 +1,25 @@ + + + + + Connection + +
+ + +
+ + +