diff --git a/components/Dashboard/Rooms.tsx b/components/Dashboard/Rooms.tsx index dc09370..b78d565 100644 --- a/components/Dashboard/Rooms.tsx +++ b/components/Dashboard/Rooms.tsx @@ -1,8 +1,420 @@ import React, { useState } from "react"; import { render } from "react-dom"; +import { + FaMicrophoneAlt, + FaHeadphonesAlt, + FaTh, + FaAngleDown, + FaPlusSquare, + FaBroom, + FaBell, + FaFilePdf, + FaCopy, + FaClock, + FaPlay, + FaPlus, + FaCheck, + FaCode, + FaLink, + FaExternalLinkAlt, + FaArchive, + FaAtlassian, + FaSearch, +} from "react-icons/fa"; +import { IoPulseOutline, IoRemoveOutline, IoTimer } from "react-icons/io5"; +import { BsThreeDots } from "react-icons/bs"; +import Image from "next/image"; export default function DashboardRoom() { - const [count, setCount] = useState(0) + const [count, setCount] = useState(0); - return
hi
; -} \ No newline at end of file + return ( +
+ + + ROOMS + + + + {/* tab pane */} + + + All + + + + Live + + + + Scheduled + + + + Recurring + + + + + Week + + + + + + + + {/* all rooms */} + + {/* spontaneous bugs room */} + + {/* header */} + + {/* meeting details */} + + + bug fixing + + + were just fixing that jsx bug thats a paiiinnnn + + + {/* badges and tags */} + + + blockers + + + + engineering + + + + + {/* room status */} + + + + live + + + {/* room attachments */} + + + + + + + + + {/* footer */} + + + + + profile + + + + profile + + + Arjun and Liam + + {" "} + + + + {/* live room - design meeting */} + + {/* header */} + + {/* meeting details */} + + + Shopping Cart Experience + + + lets finish the mockups @josh, @mark, and @arjun please step in + for feedback + + + {/* badges and tags */} + + + design + + + + + {/* room status */} + + + + live + + + on and off all day + + + {/* room attachments */} + + + + + + + + + {/* footer */} + + + + + profile + + + + Adriana + + + + + + + + {/* scheduled room - one on one */} + + {/* header */} + + {/* meeting details */} + + + Arjun and Paul - One on one + + + performance review + + + {/* badges and tags */} + + + private + + + + + {/* room status */} + + + + scheduled + + + + 3ish? Ill ping you Arjun + + + + + {/* footer */} + + + {" "} + + + + {/* recurring room - dsu */} + + {/* header */} + + {/* meeting details */} + + + Daily Standup + + + + {/* badges and tags */} + + + scrum + + + + engineering + + + + + {/* room status */} + + + + recurring + + + 10am daily + + + + {/* footer */} + + + + {" "} + + + + {/* recurring room - demo */} + + {/* header */} + + {/* meeting details */} + + + Sprint Demo + + + all hands on deck...lets have fun :) + + + {/* badges and tags */} + + + scrum + + + + + {/* room status */} + + + + recurring + + + + biweekly fridays! + + + + + {/* footer */} + + + + {" "} + + + + {/* recurring room - wine wednesdays */} + + {/* header */} + + {/* meeting details */} + + + Wine Wednesdays + + + @JOSH YOU BETTER COME + + + {/* badges and tags */} + + + party 🎉 + + + + + {/* room status */} + + + + recurring + + + + wednesdays 7-9pm + + + + + {/* footer */} + + + + + + + + + +
+ ); +} diff --git a/components/Layouts/BackgroundLayout.js b/components/Layouts/BackgroundLayout.js index f3fc725..cd81859 100644 --- a/components/Layouts/BackgroundLayout.js +++ b/components/Layouts/BackgroundLayout.js @@ -1,6 +1,6 @@ export default function BackgroundLayout({ children }) { return ( -
+
{children}
); diff --git a/pages/teams/[teamid].tsx b/pages/teams/[teamid].tsx index 15e7f28..9880fc9 100644 --- a/pages/teams/[teamid].tsx +++ b/pages/teams/[teamid].tsx @@ -2,6 +2,7 @@ import { GetServerSidePropsContext, GetServerSidePropsResult } from "next"; import { useRouter } from "next/router"; import { useEffect, useState } from "react"; import Header from "../../components/Dashboard/Header"; +import Rooms from "../../components/Dashboard/Rooms"; import TeamVoiceLine from "../../components/Dashboard/TeamVoiceLine"; import BackgroundLayout from "../../components/Layouts/BackgroundLayout"; import Loading from "../../components/Loading"; @@ -85,6 +86,8 @@ function TeamDashboard() {
+ +
);