diff --git a/.gitignore b/.gitignore
index a547bf3..5639aea 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,8 +8,9 @@ pnpm-debug.log*
lerna-debug.log*
node_modules
-dist
+
dist-ssr
+dist
*.local
# Editor directories and files
diff --git a/public/logo.png b/public/logo.png
new file mode 100644
index 0000000..3afb9bf
Binary files /dev/null and b/public/logo.png differ
diff --git a/src/assets/link.svg b/src/assets/link.svg
new file mode 100644
index 0000000..50cd5f1
--- /dev/null
+++ b/src/assets/link.svg
@@ -0,0 +1,16 @@
+
\ No newline at end of file
diff --git a/src/assets/logo.svg b/src/assets/logo.svg
new file mode 100644
index 0000000..1b0db3f
--- /dev/null
+++ b/src/assets/logo.svg
@@ -0,0 +1,11 @@
+
+
\ No newline at end of file
diff --git a/src/components/Header.tsx b/src/components/Header.tsx
index 4f83289..08389f6 100644
--- a/src/components/Header.tsx
+++ b/src/components/Header.tsx
@@ -1,18 +1,31 @@
-import { useLocation } from 'preact-iso';
+import { useLocation } from "preact-iso";
+import LinkSvg from "../assets/link.svg";
+import LogoSvg from "../assets/logo.svg";
+import { useState, useEffect } from "preact/hooks"
export function Header() {
- const { url } = useLocation();
+ const { url } = useLocation();
+ const [currentTime, setCurrentTime] = useState('');
- return (
-
-
-
- );
+
+ return (
+
+
+
+
nebula.
+
+
+
+ Clock
+
+
+ Games
+
+
+ );
}
+// yes i got itdfsdsdfsdfsdfsdfsdfsdfsdfsdfsdfsdf
+// @madjikun do the DAMN CSS
+// clock in middle, logo on left, buttons on side yk
+
+// oh yeah go to the liveshare tab then click on the shared serer
\ No newline at end of file
diff --git a/src/index.tsx b/src/index.tsx
index 45bd5bf..fe6581f 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -5,17 +5,22 @@ import { Header } from './components/Header.jsx';
import { Home } from './pages/Home';
import { NotFound } from './pages/_404.jsx';
import './style.css';
+import './themes/main.css';
export function App() {
return (
+