-
Notifications
You must be signed in to change notification settings - Fork 40
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
b511ab3
commit 6291638
Showing
8 changed files
with
62 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import Link from "next/link"; | ||
import PartnersData from "data/partners.yml"; | ||
|
||
const Partners = () => { | ||
return ( | ||
<section className="home-section" id="partners"> | ||
<div className="container pt-5 pb-5"> | ||
<div className="row align-items-center"> | ||
<h2 className="col-auto com-head" data-aos="fade-down" data-aos-duration="1000">Partners</h2> | ||
</div> | ||
<div className="row justify-content-center mt-3 py-5"> | ||
{PartnersData.map((partner, index) => ( | ||
<div className="col-md-3 col-6 bt-circle my-2 text-center" key={index}> | ||
<img | ||
src={partner.logo} | ||
className={`img-fluid partners-logo ${partner.paddingClass}`} | ||
alt={partner.name} | ||
/> | ||
<p className="pt-2">{partner.title}</p> | ||
</div> | ||
))} | ||
</div> | ||
</div> | ||
</section > | ||
); | ||
}; | ||
|
||
export default Partners; |
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,12 @@ | ||
- name: JNTU, Hyderabad | ||
title: Academic Partner | ||
logo: images/partners/jntu.png | ||
paddingClass: p-1 | ||
- name: Black Buck | ||
title: Academic Partner | ||
logo: images/partners/black-buck.png | ||
paddingClass: p-1 | ||
- name: Phenom People | ||
title: Venue Partner | ||
logo: images/partners/phenom-people.png | ||
paddingClass: p-0 |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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