-
Notifications
You must be signed in to change notification settings - Fork 1
finished first draft of resources page and made styling changes #8
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
base: main
Are you sure you want to change the base?
Conversation
caz07
commented
Feb 11, 2025
- created full draft of resources page
- removed a lot of random default styling (e.g. to h1's globally, etc), ruins a lot of the CSS on main page but will fix in next pr
- changed the clickable component css, not sure if it's even necessary at all
|
||
const refArray = ["Studio", "ICPC", "Design", "Cyber", "Teach LA", "W", "AI", "Hack"] | ||
const sortedTeams = JSON.parse(JSON.stringify(teams)) | ||
console.log('here1') |
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.
can remove this log?
|
||
const ArchiveCommittee = (props) => { | ||
let {committeeName} = props; | ||
console.log(committeeName) |
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.
can remove this log?
links: item.links.filter((link) => link.source === committeeName), | ||
}; | ||
}); | ||
console.log(JSON.stringify(filteredList, null, 2)); |
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.
do we want to keep this log for now and remove 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.
Great progress on this, Charles! I really like the display for the resources page.
I think there's some hydration errors that will need to be resolved.
The styling as you already noted is a bit off. Also, the mobile view is distorted.
Can probably take care of these issues in another pr
Also, will want to add Cloud too
Left a few comments, feel free to merge after addressing!