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
+
+
+
+
+
+
+
+