diff --git a/src/components/Header.svelte b/src/components/Header.svelte new file mode 100644 index 0000000..70b39ca --- /dev/null +++ b/src/components/Header.svelte @@ -0,0 +1,3 @@ +
+ Connect +
\ No newline at end of file diff --git a/src/components/auth/Connect.svelte b/src/components/auth/Connect.svelte new file mode 100644 index 0000000..918db7c --- /dev/null +++ b/src/components/auth/Connect.svelte @@ -0,0 +1,4 @@ + +
Connect
+ +Register diff --git a/src/components/auth/Register.svelte b/src/components/auth/Register.svelte new file mode 100644 index 0000000..6203524 --- /dev/null +++ b/src/components/auth/Register.svelte @@ -0,0 +1,35 @@ + + + + diff --git a/src/routes/__layout.svelte b/src/routes/__layout.svelte index 1a443d3..a2dbf45 100644 --- a/src/routes/__layout.svelte +++ b/src/routes/__layout.svelte @@ -2,6 +2,7 @@ import '../global.css' import { theme } from '../stores' import { storeTheme } from '$lib/theme' + import Header from '$components/Header.svelte' theme.subscribe(val => { storeTheme(val) @@ -10,6 +11,8 @@
+
+
diff --git a/src/routes/connect.svelte b/src/routes/connect.svelte new file mode 100644 index 0000000..6ff70ce --- /dev/null +++ b/src/routes/connect.svelte @@ -0,0 +1,4 @@ + + \ No newline at end of file diff --git a/src/routes/register.svelte b/src/routes/register.svelte new file mode 100644 index 0000000..a46b3d8 --- /dev/null +++ b/src/routes/register.svelte @@ -0,0 +1,5 @@ + + \ No newline at end of file