diff --git a/web/src/App.scss b/web/src/App.scss
index 56dbdc3..5992e9f 100644
--- a/web/src/App.scss
+++ b/web/src/App.scss
@@ -1,3 +1,3 @@
@use "node_modules/@picocss/pico/scss/pico" with (
$theme-color: "pumpkin"
-);
\ No newline at end of file
+);
diff --git a/web/src/App.tsx b/web/src/App.tsx
index c3f90f1..ada9e2a 100644
--- a/web/src/App.tsx
+++ b/web/src/App.tsx
@@ -1,5 +1,6 @@
import React from 'react';
import { io } from "socket.io-client";
+import LandingPage from './pages/landing/LandingPage';
function App() {
const socket = io("http://localhost:3010");
@@ -8,12 +9,7 @@ function App() {
return (
-
-
- Hello World! Front
-
+
);
}
diff --git a/web/src/pages/landing/LandingPage.tsx b/web/src/pages/landing/LandingPage.tsx
new file mode 100644
index 0000000..7975f3f
--- /dev/null
+++ b/web/src/pages/landing/LandingPage.tsx
@@ -0,0 +1,25 @@
+import React from "react"
+import { Socket } from "socket.io-client";
+
+const LandingPage = (props:{socket:Socket})=>{
+ var username = "";
+ const registerUsername = (event:any) => username = event.target.value;
+ const socket = props.socket;
+ const handleCreateLobby = () => socket.emit("create-lobby", {username:username});
+ return
+
+
Trains And Roads
+
+
+
+
+
+
+
+
+
+
+
+
+};
+export default LandingPage;
\ No newline at end of file