-
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.
add local user groups and chapters (#214)
- Loading branch information
1 parent
b5840d1
commit 2d22cff
Showing
10 changed files
with
67 additions
and
2 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,29 @@ | ||
import Link from "next/link"; | ||
import localUserGroupsChaptersData from "data/localUserGroupsChapters.yml"; | ||
|
||
|
||
const LocalUserGroupsChapters = () => { | ||
return ( | ||
<section className="bg-local-groups home-section" id="local-user-groups-chapters"> | ||
<div className="container pt-5 pb-5"> | ||
<div className="row"> | ||
<h2 className="com-head text-white" data-aos="fade-down" data-aos-duration="1000">Local User Groups & Chapters</h2> | ||
</div> | ||
<div className="row justify-content-center mt-3 py-5"> | ||
{localUserGroupsChaptersData.map((partner, index) => ( | ||
<div className="col-md-3 col-6 bt-circle my-3" key={index}> | ||
<Link href={partner.website} target="_blank"> | ||
<img | ||
src={partner.logo} | ||
className={`img-fluid local-group-logo ${partner.paddingClass}`} | ||
alt={partner.name} /> | ||
</Link> | ||
</div> | ||
))} | ||
</div> | ||
</div> | ||
</section > | ||
); | ||
}; | ||
|
||
export default LocalUserGroupsChapters; |
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,16 @@ | ||
- name: PythonPune | ||
logo: images/local-user-groups-chapters/python-pune.png | ||
website: https://pythonpune.in/ | ||
paddingClass: p-0 | ||
- name: BangPypers | ||
logo: images/local-user-groups-chapters/bang-pypers.png | ||
website: https://bangalore.pythonindia.org/ | ||
paddingClass: p-0 | ||
- name: HydPy | ||
logo: images/local-user-groups-chapters/hyd-py.png | ||
website: https://www.hydpy.org/ | ||
paddingClass: p-0 | ||
- name: ChennaiPy | ||
logo: images/local-user-groups-chapters/chennai-py.png | ||
website: http://chennaipy.org/ | ||
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.
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