From 78813c0bb9cddc151cd772cbce06a8fb2b9aca9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Utsav=20Patel=20=E2=9C=A8?= <158522755+utsavpatel562@users.noreply.github.com> Date: Wed, 3 Jul 2024 14:39:14 -0400 Subject: [PATCH] Update page.tsx --- app/(root)/(home)/page.tsx | 32 ++++++++++++++++++++------------ 1 file changed, 20 insertions(+), 12 deletions(-) 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} +

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