prettier and updated website header

This commit is contained in:
2026-06-08 01:13:30 +02:00
parent fe9e9082b2
commit 4449b5207b
18 changed files with 503 additions and 482 deletions
+6 -6
View File
@@ -5,14 +5,14 @@ import Home from "./pages/Home";
import Stream from "./pages/Stream";
function App() {
const path = window.location.pathname.toLowerCase();
const path = window.location.pathname.toLowerCase();
let content = <Home />;
if (path === "/stream") {
content = <Stream />;
}
let content = <Home />;
if (path === "/stream") {
content = <Stream />;
}
return <Layout>{content}</Layout>;
return <Layout>{content}</Layout>;
}
export default App;