diff --git a/packages/common/helpers/routes.ts b/packages/common/helpers/routes.ts
index 628b1dc..15942e7 100644
--- a/packages/common/helpers/routes.ts
+++ b/packages/common/helpers/routes.ts
@@ -1,9 +1,9 @@
enum Routes {
- convos = "/s",
- later = "/s/later",
- done = "/s/done",
- drawer = "/s/drawer",
- rooms = "/s/rooms",
+ convos = "/s#conversations",
+ later = "/s#later",
+ done = "/s#done",
+ drawer = "/s#drawer",
+ rooms = "/s#rooms",
}
export default Routes;
diff --git a/packages/web/components/v2/Conversations.tsx b/packages/web/components/v2/Conversations.tsx
new file mode 100644
index 0000000..0986bc5
--- /dev/null
+++ b/packages/web/components/v2/Conversations.tsx
@@ -0,0 +1,371 @@
+import { Avatar, Badge } from "antd";
+import {
+ FaDotCircle,
+ FaWalking,
+ FaRocket,
+ FaCheckDouble,
+ FaCircle,
+ FaUser,
+ FaRegClock,
+ FaCheck,
+ FaAngleRight,
+ FaGithub,
+ FaAtlassian,
+} from "react-icons/fa";
+
+export default function Conversations() {
+ return (
+ <>
+
+
+
+ Live
+
+
+
+ {/* row of live room cards */}
+
+ {/* engineering rooms */}
+
+
+
+
+
+
+
+
+
+ Engineering
+
+
+ {"01:20"}
+
+
+
+
+
+
+
+
+
+
+
+ Priority
+
+
+
+ {/* Today */}
+
+
+ Today
+
+
+
+
+
+
+ {/* engineering */}
+
+
+
+
+
+
+ K
+ }
+ />
+ }
+ />
+ }
+ />
+ }
+ />
+
+
+ Engineering
+
+
+
+ {`Josh: "let's just figure out how to finish the rest of the "`}
+
+
+
+ 9:00am
+
+
+ {/* actions */}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {/* general */}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ General
+
+
+
+ You spoke 2 hours ago
+
+
+
+ 7:22am
+
+
+ {/* actions */}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {/* one on one chat with sydney */}
+
+
+
+
+
+
+
+
+
+
+ Sydney
+
+
+
+ {`"Did you ever figure out that problem with the "`}
+
+
+
+ 6:50am
+
+
+ {/* actions */}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Last 7 Days
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Justin
+
+
+
+ {`"Here's a quick github link for that library you were looking for"`}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 6:50am
+
+
+ {/* actions */}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Steph and Lee
+
+
+
+ {`"Let's hop into a room to discuss this sometime this afternoon..."`}
+
+
+
+ 6:50am
+
+
+ {/* actions */}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Earlier This Month
+
+
+
+
+
+
+
+ November 2021
+
+
+
+
+
+ {"That's all"}
+ >
+ );
+}
diff --git a/packages/web/pages/s/done.tsx b/packages/web/components/v2/Done.tsx
similarity index 73%
rename from packages/web/pages/s/done.tsx
rename to packages/web/components/v2/Done.tsx
index 6cd7018..eb9d52c 100644
--- a/packages/web/pages/s/done.tsx
+++ b/packages/web/components/v2/Done.tsx
@@ -1,4 +1,3 @@
-import getDynamicMeLayout from "../../components/Layouts/DynamicMeLayout";
import React from "react";
import { FaCheck } from "react-icons/fa";
@@ -18,7 +17,3 @@ export default function Done() {
);
}
-
-Done.getLayout = function getLayout(page: React.ReactElement) {
- return getDynamicMeLayout(page);
-};
diff --git a/packages/web/pages/s/drawer.tsx b/packages/web/components/v2/Drawer.tsx
similarity index 74%
rename from packages/web/pages/s/drawer.tsx
rename to packages/web/components/v2/Drawer.tsx
index e96f811..3082897 100644
--- a/packages/web/pages/s/drawer.tsx
+++ b/packages/web/components/v2/Drawer.tsx
@@ -1,4 +1,3 @@
-import getDynamicMeLayout from "../../components/Layouts/DynamicMeLayout";
import React from "react";
import { FaLink } from "react-icons/fa";
@@ -18,7 +17,3 @@ export default function Drawer() {
);
}
-
-Drawer.getLayout = function getLayout(page: React.ReactElement) {
- return getDynamicMeLayout(page);
-};
diff --git a/packages/web/components/v2/Header.tsx b/packages/web/components/v2/Header.tsx
index 5286104..49457c0 100644
--- a/packages/web/components/v2/Header.tsx
+++ b/packages/web/components/v2/Header.tsx
@@ -17,9 +17,6 @@ import UserStatusBubble from "../UserStatusBubble";
export default function Header() {
const router = useRouter();
- const currPage = router.pathname;
- console.log(currPage);
-
const UserMenu = (