Skip to content

Commit

Permalink
Update page.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
utsavpatel562 authored Jul 3, 2024
1 parent 6386294 commit 78813c0
Showing 1 changed file with 20 additions and 12 deletions.
32 changes: 20 additions & 12 deletions app/(root)/(home)/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import MeetingTypeList from "@/components/MeetingTypeList";
import Upcoming from "./upcoming/page";

const Home = () => {
const now = new Date();
Expand All @@ -12,21 +13,28 @@ const Home = () => {
);

return (
<section className="flex size-full flex-col gap-5 text-white">
<div className="h-[303px] w-full rounded-[20px] bg-hero bg-cover">
<div className="flex h-full flex-col justify-between max-md:px-5 max-md:py-8 lg:p-11">
<h2 className="glassmorphism max-w-[273px] rounded py-2 text-center text-base font-normal">
Upcoming Meeting at: 12:30 PM
</h2>
<div className="flex flex-col gap-2">
<h1 className="text-4xl font-extrabold lg:text-7xl">{time}</h1>
<p className="text-lg font-medium text-sky-1 lg:text-2xl">{date}</p>
<>
<section className="flex size-full flex-col gap-5 text-white">
<div className="h-[303px] w-full rounded-[20px] bg-hero bg-cover">
<div className="flex h-full flex-col justify-between max-md:px-5 max-md:py-8 lg:p-11">
<h2 className="glassmorphism max-w-[273px] rounded py-2 text-center text-base font-normal">
Upcoming Meeting at: 12:30 PM
</h2>
<div className="flex flex-col gap-2">
<h1 className="text-4xl font-extrabold lg:text-7xl">{time}</h1>
<p className="text-lg font-medium text-sky-1 lg:text-2xl">
{date}
</p>
</div>
</div>
</div>
</div>

<MeetingTypeList />
</section>
<MeetingTypeList />
<div className="mt-5">
<Upcoming />
</div>
</section>
</>
);
};

Expand Down

0 comments on commit 78813c0

Please sign in to comment.