Skip to content

Commit

Permalink
Merge pull request #11 from tedx-rit/section-meetus
Browse files Browse the repository at this point in the history
Section meetus
  • Loading branch information
tedx-rit-kottayam authored Aug 17, 2023
2 parents baccc2d + caf9c44 commit 9f81e51
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import Navbar from "@/components/Navbar";
import LandingPage from "@/components/LandingPage";
import Speakers from "@/components/Speakers";
import Highlights from "@/components/Highlights";
import MeetUs from "@/components/MeetUs";
import ContactUs from "@/components/ContactUs";

export default function Home() {
Expand All @@ -11,6 +12,7 @@ export default function Home() {
<LandingPage />
<Speakers />
<Highlights />
<MeetUs />
<ContactUs />
</main>
);
Expand Down
2 changes: 1 addition & 1 deletion src/components/Highlights.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import VideoPlayer from "@/components/Highlights/VideoPlayer";
export default function Highlights() {
return (
<Container section="highlights">
<div className="mb-[550px] h-max">
<div>
<Heading>Highlights</Heading>
<div className="mt-[15px] flex h-auto w-full flex-col content-center items-center md:mt-[70px]">
<div className="mt-[110px absolute h-[130px] w-[95%] bg-red md:mt-[220px] md:h-[286px] md:w-[75%] lg:rounded-[5px]"></div>
Expand Down
17 changes: 17 additions & 0 deletions src/components/MeetUs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import Container from "@/components/utility/Container";

export default function MeetUs() {
return (
<Container section="meetus">
<div className="w-full h-[600px] flex flex-col items-center justify-center text-center mb-[100px]">
<div className="md:w-[75%] w-[89%] text-[22px] font-light md:text-[24px] mb-[20px] leading-tight">
This initiative would not have been possible without the generous
support of our sponsors and team members. ❤️
</div>
<button className="h-[50px] w-[232px] rounded-[5px] bg-red text-[20px] font-semibold md:w-[280px]">
MEET THEM
</button>
</div>
</Container>
);
}

0 comments on commit 9f81e51

Please sign in to comment.