-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added meet the Helm #2
Open
tanmay-s18
wants to merge
5
commits into
sivangbagri:master
Choose a base branch
from
tanmay-s18:meet-helm
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
91c432a
Added meet the Helm
tanmay-s18 9ce9388
Update src/components/meetHelm.tsx
tanmay-s18 a13a4f2
Update src/components/meetHelm.tsx
tanmay-s18 4851ed4
updating changes in meet the helm
tanmay-s18 f958f02
timeline component
tanmay-s18 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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,82 @@ | ||
import React from 'react'; | ||
|
||
import image1 from '../assets/images/Screenshot 2024-12-24 225656.png'; | ||
import image2 from '../assets/images/1723468189219.jpeg'; | ||
import image3 from '../assets/images/Screenshot 2024-12-24 225827.png'; | ||
|
||
|
||
const MeetTheHelm: React.FC = () => { | ||
const members = [ | ||
{ | ||
name: 'Astha Shetty', | ||
role: 'Secretary', | ||
description: 'A visionary leader with a knack for strategic thinking and innovation.', | ||
image: image1, | ||
}, | ||
{ | ||
name: 'Aryan Sharma', | ||
role: 'General Secretary', | ||
description: 'Passionate about fostering teamwork and ensuring smooth operations.', | ||
image: image2, | ||
}, | ||
{ | ||
name: 'Hrishit Yelchuri', | ||
role: 'General Secretary', | ||
description: 'Committed to driving growth and creating impactful initiatives.', | ||
image: image3, | ||
}, | ||
]; | ||
|
||
return ( | ||
<div className="p-8 bg-gray-100 min-h-screen"> | ||
<h1 className="text-4xl font-bold text-center mb-8 text-gray-800">Meet the Helm</h1> | ||
<p className="text-lg text-center mb-12 text-gray-600"> | ||
Meet the visionary minds driving the Business Club IIT (BHU). Our team comprises dynamic leaders with a passion for fostering innovation, teamwork, and growth. | ||
</p> | ||
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8"> | ||
{members.map((member, index) => ( | ||
<div | ||
key={index} | ||
className="bg-white shadow-lg rounded-lg p-6 hover:shadow-xl transition-shadow duration-300" | ||
> | ||
<div className="bg-gradient-to-tr"> | ||
tanmay-s18 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
<div className="w-40 h-40 mx-auto rounded-full border-4 border-white overflow-hidden"> | ||
<img | ||
src={member.image} | ||
alt={member.name} | ||
className="object-cover w-full h-full" | ||
style={{ aspectRatio: '1 / 1' }} | ||
/> | ||
</div> | ||
|
||
</div> | ||
{/* <h2 className="text-xl font-semibold text-gray-800 text-center">{member.name}</h2> | ||
<p className="text-sm text-gray-600 text-center italic mb-4">{member.role}</p> | ||
<p className="text-gray-700 text-center">{member.description}</p> */} | ||
<div className="p-6 text-center"> | ||
<h2 className="text-2xl font-bold mb-2">{member.name}</h2> | ||
<p className="text-sm font-semibold mb-4">{member.role}</p> | ||
<p className="text-gray-600">{member.description}</p> | ||
</div> | ||
<div className="p-4 bg-gray-100 flex justify-center gap-4"> | ||
<a | ||
href="#" | ||
className=":text-indigo-800 transition-colors" | ||
> | ||
</a> | ||
<a | ||
href="#" | ||
className=" transition-colors" | ||
tanmay-s18 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
> | ||
</a> | ||
</div> | ||
</div> | ||
))} | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default MeetTheHelm; |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion: Use semantic names for image assets
Screenshot timestamps as image names are not maintainable. Consider using descriptive names that reflect the content (e.g., 'astha_profile.png').
Suggested implementation:
You will need to: