-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dbb3235
commit 3adac26
Showing
5 changed files
with
143 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,121 @@ | ||
import Image from "next/image"; | ||
import { FaLongArrowAltRight, FaRegLightbulb } from "react-icons/fa"; | ||
|
||
export default function EventPage() { | ||
return <h2>EventPage</h2>; | ||
return ( | ||
<section className="md:mt-16 mt-8 mb-14 md:mb-52 md:px-12"> | ||
<h2 className="text-4xl font-bold mb-8 md:mb-12">Events</h2> | ||
|
||
<div className="flex flex-col md:flex-row items-start gap-8 md:gap-[60px]"> | ||
<div className="md:w-[60%]"> | ||
<div className="flex flex-col md:flex-row gap-5 md:gap-8 items-start justify-between p-5 md:p-8 border"> | ||
<Image | ||
className="rounded-full w-28" | ||
src="/people-3.jpg" | ||
width={250} | ||
height={250} | ||
alt="" | ||
/> | ||
<div> | ||
<p className="text-gray-600 text-sm"> | ||
<span className="text-black bg-[#f5df4d] hover:text-white hover:bg-black mr-4 p-1"> | ||
Mar 07 - Mar 12 | ||
</span> | ||
12:00 am | ||
</p> | ||
<p className="hover:text-red-500 cursor-pointer font-bold mt-3 mb-2 text-lg"> | ||
How to Build Confidence in Your Abilities | ||
</p> | ||
<p className="text-gray-600"> | ||
Overcome your limiting beliefs and achieve your goals. | ||
</p> | ||
</div> | ||
<a className="px-8 py-4 bg-[#f5df4d] cursor-pointer font-bold hover:text-white hover:bg-black"> | ||
DETAILS | ||
</a> | ||
</div> | ||
|
||
<div className="flex flex-col md:flex-row gap-5 md:gap-8 items-start justify-between p-5 md:p-8 border"> | ||
<Image | ||
className="rounded-full w-28" | ||
src="/reading-4.jpg" | ||
width={250} | ||
height={250} | ||
alt="" | ||
/> | ||
<div> | ||
<p className="text-gray-600 text-sm"> | ||
<span className="text-black bg-[#f5df4d] hover:text-white hover:bg-black mr-4 p-1"> | ||
Mar 14 - Mar 17 | ||
</span> | ||
10:00 am | ||
</p> | ||
<p className="hover:text-red-500 cursor-pointer font-bold mt-3 mb-2 text-lg"> | ||
A Stress Management for Leaders | ||
</p> | ||
<p className="text-gray-600"> | ||
3 step framework for stress management, anxiety relief, and | ||
improved emotional intelligence using applied meditation. | ||
</p> | ||
</div> | ||
<a className="px-8 py-4 bg-[#f5df4d] cursor-pointer font-bold hover:text-white hover:bg-black"> | ||
DETAILS | ||
</a> | ||
</div> | ||
|
||
<div className="flex flex-col md:flex-row gap-5 md:gap-8 items-start justify-between p-5 md:p-8 border"> | ||
<Image | ||
className="rounded-full w-28" | ||
src="/reading-3.jpg" | ||
width={250} | ||
height={250} | ||
alt="" | ||
/> | ||
<div> | ||
<p className="text-gray-600 text-sm"> | ||
<span className="text-black bg-[#f5df4d] hover:text-white hover:bg-black mr-4 p-1"> | ||
Mar 15 - Mar 18 | ||
</span> | ||
12:00 am | ||
</p> | ||
<p className="hover:text-red-500 cursor-pointer font-bold mt-3 mb-2 text-lg"> | ||
Critical Thinking - An Upgrade For Your Mind | ||
</p> | ||
<p className="text-gray-600"> | ||
This course aims to make you a more rigorous, effective, and | ||
creative thinker. | ||
</p> | ||
</div> | ||
<a className="px-8 py-4 bg-[#f5df4d] cursor-pointer font-bold hover:text-white hover:bg-black"> | ||
DETAILS | ||
</a> | ||
</div> | ||
|
||
{/* <a className="bg-[#f5df4d] font-bold py-4 px-8 text-base hover:bg-black hover:text-white flex items-center gap-2 w-[230px] mt-6 md:mt-12 ml-5 md:ml-0 cursor-pointer"> | ||
BROWSE EVENTS <FaLongArrowAltRight />{" "} | ||
</a> */} | ||
</div> | ||
|
||
<div className="md:w-[40%] relative"> | ||
<p className="bg-[#f5df4d] p-5 md:p-9 text-6xl w-[100px] md:w-[140px] absolute top-0 md:top-14 left-0 md:left-20"> | ||
<FaRegLightbulb></FaRegLightbulb> | ||
</p> | ||
<Image | ||
className="md:pl-[150px]" | ||
src="/writing.jpg" | ||
alt="" | ||
width={500} | ||
height={800} | ||
/> | ||
<Image | ||
width={300} | ||
height={350} | ||
alt="" | ||
className="absolute bottom-[-250px] left-0 hidden md:block" | ||
src="/car-2.jpg" | ||
/> | ||
</div> | ||
</div> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters