-
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.
Merge pull request #19 from ComputerSocietyVITC/sinchan
team page done,might add animations
- Loading branch information
Showing
8 changed files
with
182 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
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,25 @@ | ||
import github from "../../assets/socialmedia/github.png"; | ||
import linkedin from "../../assets/socialmedia/linkedin.png"; | ||
const Teamcard = ({ name, desig, imageUrl, linkUrl, gitUrl}) => { | ||
return ( | ||
<> | ||
<div className='rounded-[36px] p-0.5 bg-gradient-to-b from-b_col3 to-b_col4 h-[555px] lg:w-[430px] md:w-[430px] m-4 sm:w-[300px] cursor-pointer hover:shadow-2xl hover:shadow-[#7ac4ec]/30'> | ||
<div className='rounded-[calc(36px-1px)] p-[30px] bg-gradient-to-b from-[#061b24] from-2% via-[#072031] to-[#000b11] to-9% h-[549px]' > | ||
<div className="flex flex-col justify-center items-center gap-y-9 h-[100%] img-hover "> | ||
<img className="rounded-[50%] w-[220px] h-[220px] align-center mt-8 mb-4 img1" src={imageUrl} alt='none' /> | ||
<div className=' flex flex-col '> | ||
<h2 className='text-white text-4xl font-bold text-center'>{name}</h2> | ||
<h3 className='text-b_col3 text-2xl font-thin text-center'>{desig}</h3> | ||
<div className='flex justify-center gap-x-6 '> | ||
<a href={linkUrl}><img src={linkedin} alt="Linkedin" className="h-10 my-5 mx-auto lg:mx-0" /></a> | ||
<a href={gitUrl}><img src={github} alt="Github" className="h-10 my-5 mx-auto lg:mx-0"/></a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
export default Teamcard; |
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,25 @@ | ||
import github from "../../assets/socialmedia/github.png"; | ||
import linkedin from "../../assets/socialmedia/linkedin.png"; | ||
const Teamcard2 = ({ name, desig, imageUrl, linkUrl, gitUrl}) => { | ||
return ( | ||
<> | ||
<div className='rounded-[36px] p-0.5 bg-gradient-to-b from-b_col3 to-b_col4 h-[555px] w-[300px] m-4 col-span-1 cursor-pointer hover:shadow-2xl hover:shadow-[#7ac4ec]/30'> | ||
<div className='rounded-[calc(36px-1px)] p-[30px] bg-gradient-to-b from-[#061b24] from-2% via-[#072031] to-[#000b11] to-9% h-[549px] ' > | ||
<div className="flex flex-col justify-center items-center gap-y-9 h-[100%] img-hover card"> | ||
<img className="rounded-[50%] w-[220px] h-[220px] align-center mt-8 mb-4 img1" src={imageUrl} alt='none' /> | ||
<div className=' flex flex-col '> | ||
<h2 className='text-white text-4xl font-bold text-center'>{name}</h2> | ||
<h3 className='text-b_col3 text-2xl font-thin text-center'>{desig}</h3> | ||
<div className='flex justify-center gap-x-6 '> | ||
<a href={linkUrl}><img src={linkedin} alt="Linkedin" className="h-10 my-5 mx-auto lg:mx-0" /></a> | ||
<a href={gitUrl}><img src={github} alt="Github" className="h-10 my-5 mx-auto lg:mx-0"/></a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
export default Teamcard2; |
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,75 @@ | ||
const myTeam =[ | ||
{ | ||
name: "Person1", | ||
desig: "secretary", | ||
imageUrl: 'https://via.placeholder.com/300', | ||
linkUrl: "https://www.linkedin.com/company/ieee", | ||
gitUrl: "https://github.com/ComputerSocietyVITC/club-website-24", | ||
}, | ||
{ | ||
name: "Random1", | ||
desig: "President", | ||
imageUrl: "https://via.placeholder.com/300", | ||
linkUrl: "https://www.linkedin.com/company/ieee-sa-ieee-standards-association/", | ||
gitUrl: "https://github.com/Sinchancodes", | ||
}, | ||
{ | ||
name: "Random2", | ||
desig: "President", | ||
imageUrl: "https://via.placeholder.com/300", | ||
linkUrl: "https://www.linkedin.com/company/ieee-sa-ieee-standards-association/", | ||
gitUrl: "https://github.com/Sinchancodes", | ||
}, | ||
{ | ||
name: "Random3", | ||
desig: "President", | ||
imageUrl: "https://via.placeholder.com/300", | ||
linkUrl: "https://www.linkedin.com/company/ieee-sa-ieee-standards-association/", | ||
gitUrl: "https://github.com/Sinchancodes", | ||
}, | ||
{ | ||
name: "Random4", | ||
desig: "President", | ||
imageUrl: "https://via.placeholder.com/300", | ||
linkUrl: "https://www.linkedin.com/company/ieee-sa-ieee-standards-association/", | ||
gitUrl: "https://github.com/Sinchancodes", | ||
}, | ||
{ | ||
name: "Random5", | ||
desig: "President", | ||
imageUrl: "https://via.placeholder.com/300", | ||
linkUrl: "https://www.linkedin.com/company/ieee-sa-ieee-standards-association/", | ||
gitUrl: "https://github.com/Sinchancodes", | ||
}, | ||
{ | ||
name: "Random6", | ||
desig: "President", | ||
imageUrl: "https://via.placeholder.com/300", | ||
linkUrl: "https://www.linkedin.com/company/ieee-sa-ieee-standards-association/", | ||
gitUrl: "https://github.com/Sinchancodes", | ||
}, | ||
{ | ||
name: "Random7", | ||
desig: "President", | ||
imageUrl: "https://via.placeholder.com/300", | ||
linkUrl: "https://www.linkedin.com/company/ieee-sa-ieee-standards-association/", | ||
gitUrl: "https://github.com/Sinchancodes", | ||
}, | ||
{ | ||
name: "Random8", | ||
desig: "President", | ||
imageUrl: "https://via.placeholder.com/300", | ||
linkUrl: "https://www.linkedin.com/company/ieee-sa-ieee-standards-association/", | ||
gitUrl: "https://github.com/Sinchancodes", | ||
}, | ||
{ | ||
name: "Random9", | ||
desig: "President", | ||
imageUrl: "https://via.placeholder.com/300", | ||
linkUrl: "https://www.linkedin.com/company/ieee-sa-ieee-standards-association/", | ||
gitUrl: "https://github.com/Sinchancodes", | ||
} | ||
|
||
] | ||
|
||
export default myTeam; |