-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from tedx-rit/section-meetus
Section meetus
- Loading branch information
Showing
3 changed files
with
20 additions
and
1 deletion.
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
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 |
---|---|---|
@@ -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> | ||
); | ||
} |