Skip to content

Conversation

@morielturgeman
Copy link

No description provided.

@Tamir198 Tamir198 self-requested a review November 26, 2025 19:11
Copy link
Member

@Tamir198 Tamir198 left a comment

Choose a reason for hiding this comment

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

Some general notes:

  1. its bad practice to comment out code, remove it if not needed
  2. colors should be saved inside css variables and not hardcoded

Other than that good work, I left you some comments

<h1>Stay updated!</h1>
<p>Join 60,000+ product managers receiving monthly <br> updates on:</p>
<div class="line">
<img class="ok-img" src="assets/images/icon-success.svg" alt="">
Copy link
Member

Choose a reason for hiding this comment

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

For accessibility its you should fill out the alt attribute

<h1>Stay updated!</h1>
<p>Join 60,000+ product managers receiving monthly <br> updates on:</p>
<div class="line">
<img class="ok-img" src="assets/images/icon-success.svg" alt="">
Copy link
Member

Choose a reason for hiding this comment

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

For accessibility its you should fill out the alt attribute

And much more!
</div>
<form>
<label class="Email-label" for="email-textbox">Email address</label>
Copy link
Member

Choose a reason for hiding this comment

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

You want to be consistent with your other code so I would write this as email-label without the capital e

And much more!
</div>
<form>
<label class="Email-label" for="email-textbox">Email address</label>
Copy link
Member

Choose a reason for hiding this comment

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

You want to be consistent with your other code so I would write this as email-label without the capital e

<!-- Success message start -->

Thanks for subscribing!
<!-- Thanks for subscribing!
Copy link
Member

Choose a reason for hiding this comment

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

Commenting code is bad practice, remove it.
we can always use git to check what was here

@@ -0,0 +1,136 @@
* {
box-sizing: border-box;
Copy link
Member

Choose a reason for hiding this comment

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

Great

padding: 0;
}

.right-side > p {
Copy link
Member

Choose a reason for hiding this comment

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

This will select every direct p to the .right-side
If you need something more specific give class to your p and use it in here

align-self: center;
}

.right-side form {
Copy link
Member

Choose a reason for hiding this comment

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

If you will have more than 1 form inside right-side this css will affect him as well and we will not always want to do so

So the solution should be the same as in the comment above - add class name for your form

}


@media (min-width: 768px) {
Copy link
Member

Choose a reason for hiding this comment

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

Nice work in supporting mobile as well, btw this is supported as well :

@media (width <= 1250px) {

For more info check the docs

@morielturgeman morielturgeman deleted the feature/moriel/new-design branch December 3, 2025 21:19
@morielturgeman morielturgeman restored the feature/moriel/new-design branch December 3, 2025 21:28
@morielturgeman morielturgeman reopened this Dec 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants