Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds the initial “E-Board” page layout to match the provided Figma design, including executive board member cards and associated profile images.
Changes:
- Implemented a styled
/e-boardpage using Tailwind layout and card components. - Added two new static profile image assets under
public/. - Included a bottom highlight/quote section consistent with the design.
Reviewed changes
Copilot reviewed 1 out of 3 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| app/e-board/page.tsx | Builds the Executive Board page UI, including member cards and image references. |
| public/leila.jpg | Adds a new profile image asset used by the E-Board page. |
| public/rosanna.jpg | Adds a new profile image asset used by the E-Board page. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+16
to
+35
| <div className="grid md:grid-cols-2 gap-10 mt-16"> | ||
|
|
||
| <div className="bg-white rounded-xl shadow-md border border-gray-200 p-10"> | ||
| <img | ||
| src="/leila.jpg" | ||
| alt="Leila Kim" | ||
| className="w-24 h-24 object-cover rounded-md mx-auto" | ||
| /> | ||
|
|
||
| <h2 className="text-xl mt-6 text-black">Leila Kim</h2> | ||
| <p className="text-[#08B2E3] text-sm mt-1">Co-President</p> | ||
|
|
||
| <div className="w-10 h-[2px] bg-gray-200 mx-auto my-5" /> | ||
|
|
||
| <p className="text-gray-500 text-sm leading-relaxed"> | ||
| Leila Kim is a senior concentrating in Computer Science and Applied Mathematics with a focus on deep learning and algorithmic fairness. She is passionate about developing AI technologies that prioritize ethical considerations and societal well-being. Through AIRES, she hopes to foster conversations about responsible AI development among Brown students. | ||
| </p> | ||
| </div> | ||
|
|
||
| <div className="bg-white rounded-xl shadow-md border border-gray-200 p-10"> |
Comment on lines
+19
to
+23
| <img | ||
| src="/leila.jpg" | ||
| alt="Leila Kim" | ||
| className="w-24 h-24 object-cover rounded-md mx-auto" | ||
| /> |
Comment on lines
+36
to
+40
| <img | ||
| src="/rosanna.jpg" | ||
| alt="Rosanna Zhao" | ||
| className="w-24 h-24 object-cover rounded-md mx-auto" | ||
| /> |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Created eboard page to match figma design