-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
12 changed files
with
155 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Binary file added
BIN
+48.5 KB
src/assets/CommunityData/20230207_171323_0000 - Harshavardhan Bajoria.png
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.
Binary file added
BIN
+12.5 KB
...pter lockup centered template - Google Developer Student Clubs IIIT Kalyani.jpg
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
export const community = [ | ||
{ | ||
name: "GDSC Aliah", | ||
url: "/src/assets/CommunityData/GDSC Aliah logo - Ankit Majee.png", | ||
link: "https://www.linkedin.com/company/gdsc-aliah/", | ||
}, | ||
{ | ||
name: "GDSC BBIT", | ||
url: "/src/assets/CommunityData/Group 1 - GDSC BBIT.png", | ||
link: "", | ||
}, | ||
{ | ||
name: "ClueLess", | ||
url: "/src/assets/CommunityData/clueless - Subho Ghosh.png", | ||
link: "https://www.linkedin.com/company/79089507", | ||
}, | ||
{ | ||
name: "GDSC IIIT Kalyani", | ||
url: "/src/assets/CommunityData/GDSC Logo chapter lockup centered template - Google Developer Student Clubs IIIT Kalyani.jpg", | ||
link: "https://www.linkedin.com/company/gdsc-iiit-kalyani/", | ||
}, | ||
{ | ||
name: "ACM SSCBS", | ||
url: "/src/assets/CommunityData/acmlogo - Vineet.jpeg", | ||
link: "https://www.linkedin.com/in/acm-sscbs/", | ||
}, | ||
{ | ||
name: "Devorld", | ||
url: "/src/assets/CommunityData/20230207_171323_0000 - Harshavardhan Bajoria.png", | ||
link: "https://www.linkedin.com/company/devorld/", | ||
}, | ||
]; |
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,78 @@ | ||
import React from "react"; | ||
import "./Community.scss"; | ||
import Marquee from "react-fast-marquee"; | ||
|
||
import { community } from "constants/communityData"; | ||
const Community = () => { | ||
return ( | ||
<div className="scroll"> | ||
<h1 className="community">Community Partners</h1> | ||
<Marquee pauseOnHover speed={70}> | ||
{community.map((item) => { | ||
return ( | ||
<a | ||
target="_blank" | ||
href={item.link} | ||
key={item.name} | ||
rel="noreferrer" | ||
> | ||
<img className="image" src={item.url} alt={item.name} /> | ||
</a> | ||
); | ||
})} | ||
{community.map((item) => { | ||
return ( | ||
<a | ||
target="_blank" | ||
href={item.link} | ||
key={item.name} | ||
rel="noreferrer" | ||
> | ||
<img className="image" src={item.url} alt={item.name} /> | ||
</a> | ||
); | ||
})} | ||
</Marquee> | ||
<Marquee pauseOnHover speed={70} direction="right"> | ||
{community.map((item) => { | ||
return ( | ||
<a | ||
target="_blank" | ||
href={item.link} | ||
key={item.name} | ||
rel="noreferrer" | ||
> | ||
<img className="image" src={item.url} alt={item.name} /> | ||
</a> | ||
); | ||
})} | ||
{community.map((item) => { | ||
return ( | ||
<a | ||
target="_blank" | ||
href={item.link} | ||
key={item.name} | ||
rel="noreferrer" | ||
> | ||
<img className="image" src={item.url} alt={item.name} /> | ||
</a> | ||
); | ||
})} | ||
{community.map((item) => { | ||
return ( | ||
<a | ||
target="_blank" | ||
href={item.link} | ||
key={item.name} | ||
rel="noreferrer" | ||
> | ||
<img className="image" src={item.url} alt={item.name} /> | ||
</a> | ||
); | ||
})} | ||
</Marquee> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Community; |
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,26 @@ | ||
.scroll { | ||
width: 100%; | ||
height: 400px; | ||
margin: 10px 0px 70px 0px; | ||
} | ||
.image { | ||
height: 130px; | ||
// width: 200px; | ||
background-color: white; | ||
object-fit: cover; | ||
margin: 20px 12px; | ||
} | ||
.community { | ||
text-align: center; | ||
margin-bottom: 40px; | ||
} | ||
@media screen and (max-width: 768px) { | ||
.scroll { | ||
height: 200px; | ||
margin-top: 20px; | ||
} | ||
.image { | ||
height: 70px; | ||
margin: 10px 12px; | ||
} | ||
} |