diff --git a/app/(root)/(home)/page.tsx b/app/(root)/(home)/page.tsx index 2b3ce28..f1fd5c1 100644 --- a/app/(root)/(home)/page.tsx +++ b/app/(root)/(home)/page.tsx @@ -1,4 +1,5 @@ import MeetingTypeList from "@/components/MeetingTypeList"; +import Upcoming from "./upcoming/page"; const Home = () => { const now = new Date(); @@ -12,21 +13,28 @@ const Home = () => { ); return ( -
-
-
-

- Upcoming Meeting at: 12:30 PM -

-
-

{time}

-

{date}

+ <> +
+
+
+

+ Upcoming Meeting at: 12:30 PM +

+
+

{time}

+

+ {date} +

+
-
- -
+ +
+ +
+ + ); };