-
Notifications
You must be signed in to change notification settings - Fork 0
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
Cw2 10 redesign resources cards to incorporate logos #17
Cw2 10 redesign resources cards to incorporate logos #17
Conversation
CW2-29 Create additional resource for CSESoc Learn
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.
Really nice work, looks much better now.
Changes:
- Put some small comments below
- Make sure to pull from the
main
branch, as there have been some changes. One main one is that Compclub has been replaced with CSESoc Learn, but hopefully that is a very quick fix
Comments:
- I think the grid format is fine if we did want to keep it, but did you have any suggestions, would be more than happy to hear them
<h2 className="mt-1 text-3xl font-extrabold">Enrolment Guide</h2> | ||
<p className="mt-7 text-lg mb-5">Learn how to get a headstart on uni</p> | ||
</a> | ||
{stage1.map((item, index) => { |
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.
nit: don't need index
if not going to use it, can just do .map(item => {...})
</a> | ||
{stage1.map((item, index) => { | ||
return ( | ||
<a |
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.
need a key
for each element otherwise will complain
…https://github.com/csesoc/csesoc-website-2023 into CW2-10-redesign-resources-cards-to-incorporate-logos
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.
Alright, thanks, looks good. Just a couple of quick changes and then feel free to merge!
<h2 className="mt-1 text-3xl font-extrabold">Enrolment Guide</h2> | ||
<p className="mt-7 text-lg mb-5">Learn how to get a headstart on uni</p> | ||
</a> | ||
{stage1.map((item: any) => { |
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.
Should be item: resourceCards
right
package-lock.json
Outdated
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.
I think this is left over from before we moved into frontend/backend, can remove
Why the changes are required?
As specified in title.
Changes
Screenshots
Comments