Skip to content

Commit

Permalink
feat(join-us-page): implements join-us page (#39)
Browse files Browse the repository at this point in the history
* feat(joinUs page): impliments top section

* feat(joinUs-page): implements bottom section

* Update page.tsx

* fix(join-us-page): fixes page url/route naming

* fix(join-us-page): minor fix

---------

Co-authored-by: Yasiru Dharmathilaka <[email protected]>
  • Loading branch information
nethmina1028 and AyoItsYas authored Oct 3, 2024
1 parent 1a6cd72 commit 59af6e0
Showing 1 changed file with 164 additions and 0 deletions.
164 changes: 164 additions & 0 deletions src/app/join-us/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
import Image from "next/image";

export default function joinUs() {
return (
<div className="mx-6 mt-12 ">
{/* Section1*/}

<div className="flex flex-col lg:flex-row items-center space-y-8 gap-2">
<div className="lg:w-1/3 ">
<h1 className="md:text-[3.770rem] text-[2.570rem] font-bold ">
Our <span className="text-primaryLight">Vision</span>
</h1>
<p className="text-[1.163rem] text-opacity-85 mt-4 ">
A world in which engineers and scientists are respected for their
exemplary ethical behavior and the IEEE and its Ethics & Member
Conduct Committee are recognized as a major drive in this regard.
</p>
</div>

<div className="lg:w-2/3">
<Image
src="https://placehold.co/900x350.png"
width={900}
height={350}
alt="Volenteer image"
/>
</div>
</div>

{/* Section1*/}

<div className="flex flex-col-reverse lg:flex-row items-center space-y-8 gap-2 ">
<div className="lg:w-2/3 mt-8">
<Image
src="https://placehold.co/900x350.png"
width={900}
height={350}
alt="Volenteer image"
/>
</div>

<div className="lg:w-1/3 ">
<h1 className="md:text-[3.770rem] text-[2.570rem] font-bold ">
Our <span className="text-primaryLight">Mission</span>
</h1>
<p className="text-[1.163rem] text-opacity-85 mt-4 ">
The Student Chapter of IEEE NSBM advises the community on ethics
policy and concerns as well as fostering awareness on ethical issues
and promoting ethical behavior amongst individuals and organizations
working within the IEEE fields of interest.
</p>
</div>
</div>

{/* Section3*/}

<div className="mt-10 flex flex-col items-center ">
<h1 className="md:text-[3.270rem] text-[2.170rem] font-bold text-center ">
How to get a IEEE Membership
</h1>
<p className=" w-auto lg:w-[1200px] mt-6 text-center">
Reach your full potential as part of the world’s largest technology
community. Membership in IEEE is open to individuals who by education
or experience give evidence of competence in an IEEE-designated field.
Refer to the informational video below to get an idea. In contrast
</p>

<a href="" className="text-primaryLight">
click here to download the instructional PDF
</a>
</div>

{/* Section4*/}

<div className="mt-10 flex flex-col items-center ">
<h1 className="md:text-[3.270rem] text-[2.170rem] font-bold text-center ">
How to Join a IEEE National Level Projects
</h1>
<p className=" w-auto lg:w-[1200px] mt-6 text-center">
first you can get IEEE Membership and then you can join our national
projects. There are 3 categories in our national level projects
</p>

<div className="flex flex-col md:flex-row gap-4 mt-6 ">
<h1 className="w-[200px] px-4 py-2 bg-[#1f609b] text-white rounded transition-colors duration-300">
1. Member Activity
</h1>
<h1 className="w-[200px] px-4 py-2 bg-[#1f609b] text-white rounded transition-colors duration-300">
2. Technical Activity
</h1>
<h1 className="w-[200px] px-4 py-2 bg-[#1f609b] text-white rounded transition-colors duration-300">
3. Young Profesionals
</h1>
</div>

<p className=" w-auto lg:w-[1200px] mt-6 text-center">
Reach your full potential as part of the world’s largest technology
community. Membership in IEEE is open to individuals who by education
or experience give evidence of competence in an IEEE-designated field.
Refer to the informational video below to get an idea. In contrast
</p>
<a href="" className="text-primaryLight">
click here to download the instructional PDF
</a>
</div>

{/* Section5*/}

<div className="+ py-8 ">
<div className="w-full flex justify-center mt-10 ">
<div
className="relative mb-4"
style={{ width: "80%", paddingBottom: "45%" }}
>
<iframe
src="https://www.youtube.com/embed/bFQzQ9av6eM?si=B7T6_yRbaIHNGqYL"
className="absolute top-0 left-0 w-full h-full"
frameBorder="0"
allow="autoplay; encrypted-media"
allowFullScreen
/>
</div>
</div>

{/* Section5*/}

<div className="w-full flex justify-center my-12 ">
<div
className="grid grid-cols-1 md:grid-cols-3 gap-4"
style={{ width: "100%" }}
>
<div className="relative" style={{ paddingBottom: "45%" }}>
<iframe
src="https://www.youtube.com/embed/yet_another_video_id_here"
className="absolute top-0 left-0 w-full h-full"
frameBorder="0"
allow="autoplay; encrypted-media"
allowFullScreen
/>
</div>
<div className="relative" style={{ paddingBottom: "45%" }}>
<iframe
src="https://www.youtube.com/embed/el0A0U7bJ6c"
className="absolute top-0 left-0 w-full h-full"
frameBorder="0"
allow="autoplay; encrypted-media"
allowFullScreen
/>
</div>
<div className="relative" style={{ paddingBottom: "45%" }}>
<iframe
src="https://www.youtube.com/embed/yet_another_video_id_here"
className="absolute top-0 left-0 w-full h-full"
frameBorder="0"
allow="autoplay; encrypted-media"
allowFullScreen
/>
</div>
</div>
</div>
</div>
</div>
);
}

0 comments on commit 59af6e0

Please sign in to comment.