Skip to content

London | 26-ITP-Jan | Xuanming Hu | Sprint 1 | Wireframe#1048

Closed
Samual-Hu wants to merge 3 commits intoCodeYourFuture:mainfrom
Samual-Hu:feature/wireframe
Closed

London | 26-ITP-Jan | Xuanming Hu | Sprint 1 | Wireframe#1048
Samual-Hu wants to merge 3 commits intoCodeYourFuture:mainfrom
Samual-Hu:feature/wireframe

Conversation

@Samual-Hu
Copy link
Copy Markdown

@Samual-Hu Samual-Hu commented Jan 24, 2026

Learners, PR Template

Self checklist

  • I have titled my PR with Region | Cohort | FirstName LastName | Sprint | Assignment Title
  • My changes meet the requirements of the task
  • I have tested my changes
  • My changes follow the style guide

Changelist

  • Fixed alignment issue with Footer
  • Fixed indentation in HTML

Questions

None for now.

@netlify
Copy link
Copy Markdown

netlify Bot commented Jan 24, 2026

Deploy Preview for cyf-onboarding-module ready!

Name Link
🔨 Latest commit b7bb5c1
🔍 Latest deploy log https://app.netlify.com/projects/cyf-onboarding-module/deploys/698714b2c19ae1000895a591
😎 Deploy Preview https://deploy-preview-1048--cyf-onboarding-module.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
2 paths audited
Performance: 100 (no change from production)
Accessibility: 100 (no change from production)
Best Practices: 100 (no change from production)
SEO: 86 (no change from production)
PWA: -
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify project configuration.

@github-actions

This comment has been minimized.

@Samual-Hu Samual-Hu changed the title London | 26-ITP-Jan | Xuanming Hu | Sprint 1 | Module-Onboarding London | 26-ITP-Jan | Xuanming Hu | Sprint 1 | Wireframe Jan 24, 2026
@github-actions

This comment has been minimized.

4 similar comments
@github-actions

This comment has been minimized.

@github-actions

This comment has been minimized.

@github-actions

This comment has been minimized.

@github-actions

This comment has been minimized.

@Samual-Hu Samual-Hu added the Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. label Jan 24, 2026
@github-actions

This comment has been minimized.

@github-actions github-actions Bot removed the Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. label Jan 24, 2026
@Samual-Hu Samual-Hu added the Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. label Jan 24, 2026
@github-actions

This comment has been minimized.

@github-actions github-actions Bot removed the Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. label Jan 24, 2026
@Samual-Hu Samual-Hu added Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. Module-Onboarding The name of the module. labels Jan 24, 2026
@github-actions

This comment has been minimized.

@github-actions github-actions Bot removed the Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. label Jan 24, 2026
@github-actions

This comment has been minimized.

@Samual-Hu Samual-Hu added the Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. label Jan 24, 2026
@cjyuan cjyuan added Review in progress This review is currently being reviewed. This label will be replaced by "Reviewed" soon. and removed Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. labels Feb 2, 2026
Copy link
Copy Markdown
Contributor

@cjyuan cjyuan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I expected updates to both index.html and style.css so that the page elements are styled to match the wireframe.png image.

@cjyuan cjyuan added Reviewed Volunteer to add when completing a review with trainee action still to take. and removed Review in progress This review is currently being reviewed. This label will be replaced by "Reviewed" soon. labels Feb 2, 2026
@Samual-Hu Samual-Hu added Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. and removed Reviewed Volunteer to add when completing a review with trainee action still to take. Module-Onboarding The name of the module. labels Feb 4, 2026
Copy link
Copy Markdown
Contributor

@cjyuan cjyuan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Code is free of syntax error. Well done.

  • When a wireframe is provided, our implementation should closely reflect its appearance and layout to ensure consistency with design expectations. You're off to a solid start. To better align with the wireframe, can you

    • Set the images in articles 2 and 3 to have identical height.
    • (Optional challenge) Align the positions of the title and the "Read more" link between articles 2 and 3.
  • There is a gap between the left border of the footer and the viewport, but not on the right (see pic). That means the footer is not quite centered. Can you make the footer "more center"?

Image

Comment thread Wireframe/index.html Outdated
Comment on lines +16 to +19
<main>

<!-- Article 1: Questions 1 -->
<article>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you improve the indentation of the code?

Consider using VSCode's "Format Document" feature to auto format the code for better readability and consistency. To use the feature, right-click inside the code editor and select the option.

Comment thread Wireframe/index.html

<!-- Article 2: Question 2 -->
<article>
<img src="https://images.prismic.io/prismic-main/Zoa6gh5LeNNTwzHJ_web_design_wireframe.jpeg?auto=format,compress" alt="Wireframe example image" />
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's your rationale for using this URL:

https://images.prismic.io/prismic-main/Zoa6gh5LeNNTwzHJ_web_design_wireframe.jpeg?auto=format,compress

instead of this

https://images.prismic.io/prismic-main/Zoa6gh5LeNNTwzHJ_web_design_wireframe.jpeg

?

They both "seem" to retrieve the same image.

Comment thread Wireframe/style.css
Comment on lines +95 to +104
footer {
position: fixed;
bottom: 0;
text-align: center;
font-weight: 500;
border: solid black 2px;
width: 100%;
background-color: white;
color: black;
} No newline at end of file
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can also use VSCode "Format Document" feature to auto format CSS code.

@cjyuan cjyuan added Reviewed Volunteer to add when completing a review with trainee action still to take. and removed Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. labels Feb 5, 2026
@cjyuan
Copy link
Copy Markdown
Contributor

cjyuan commented Feb 5, 2026

Regarding the "Changelist" section of your PR description. Since you have made more changes than just "Changed the header description", can you update the Changelist section accordingly?

@Samual-Hu Samual-Hu added Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. and removed Reviewed Volunteer to add when completing a review with trainee action still to take. labels Feb 7, 2026
@cjyuan
Copy link
Copy Markdown
Contributor

cjyuan commented Feb 7, 2026

Changes to the code look good.

Can you also address this request:

Regarding the "Changelist" section of your PR description. Since you have made more changes than just "Changed the header description", can you update the Changelist section accordingly?


Please note that in CYF courses, the recommended way to inform the reviewer of your changes is to do both of the following:

  • Reply to their feedback.
    • In the responses, clarify how each piece of feedback was addressed to demonstrate that you've carefully reviewed the suggestions.
      • You may find the suggestions in this PR Guide useful.
    • Your response may trigger a notification (depending on the reviewer's settings), helping ensure they’re aware of the updates you’ve made.
  • Replace the "Reviewed" label by a "Needs review" label (which you have done -- great!)
    • Without this label, the reviewer would not know if your changes is ready to be reviewed.

@cjyuan cjyuan added Reviewed Volunteer to add when completing a review with trainee action still to take. and removed Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. labels Feb 7, 2026
@Samual-Hu Samual-Hu added Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. and removed Reviewed Volunteer to add when completing a review with trainee action still to take. labels Feb 7, 2026
@Samual-Hu
Copy link
Copy Markdown
Author

Hi, @cjyuan , I have addressed your comment

@cjyuan
Copy link
Copy Markdown
Contributor

cjyuan commented Feb 7, 2026

The Changelist section is supposed to describe the difference between this PR branch and CYF's main in terms of what you have changed. Usually, it describes the features you have implemented.

"Addressed issues in comments" does not quite describe what you have implemented. Can you give more details?

@cjyuan cjyuan added Reviewed Volunteer to add when completing a review with trainee action still to take. and removed Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. labels Feb 7, 2026
@Samual-Hu Samual-Hu added Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. and removed Reviewed Volunteer to add when completing a review with trainee action still to take. labels Feb 7, 2026
@Samual-Hu
Copy link
Copy Markdown
Author

Hi, @cjyuan , I have updated the description with the specific changes.

@cjyuan cjyuan added Complete Volunteer to add when work is complete and all review comments have been addressed. and removed Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. labels Feb 7, 2026
@cjyuan
Copy link
Copy Markdown
Contributor

cjyuan commented Feb 7, 2026

All good now. Well done.

@illicitonion
Copy link
Copy Markdown
Member

Closing PR because the January ITP run has finished. Feel free to re-open if you're still working on it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Complete Volunteer to add when work is complete and all review comments have been addressed.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants