-
Notifications
You must be signed in to change notification settings - Fork 24
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
Landing Page Layout Issue and Missing Key Validation #15
Comments
Could you elaborate more on this |
The main div in landing page have" grid grid-cols-12" and you are manually placing the items using grid column start and col-span in the child element, which is okay but not efficient. Instead you can simple use "grid grid-row-[20fr, 80fr] 100dvh", this will divide the two child with a 20% and 80% of the screen and 100dvh will make sure the screen always adapt to the different screens. The image section has "col-span-12 inset-0 h-[100vh] w-full object-fill object-right" , if you specify 100vh in the image it will take the 100vh of the total viewport size of the screen not the parents and as the parents has no defiend height it will simply take 100% of viewport because of this the screen is overflowing and creating a scrollable window. We can use other methods to simply make it fit it to the screen at different screen sizes. Hope you understand ask if you need more information. |
@arcVaishali You can assign me this issue, I have already fixed the issue. |
@Suman-Jyoti-Phukan do not work on the landing page for now, other than that all the other points that you have mentioned above ⬆️, you can work on that. Make sure to follow the contributing guidelines. |
Problem Description
In the landing page, several issues have been identified that need to be addressed to improve the user experience and adhere to best practices.
Image Overlapping Parent Div: The image on the landing page is overflowing with the parent container and producing a scrollable window and a white gap at the bottom because you have specified a margin botton at 8rem.
Layout Structure: The overall layout of the landing page is not properly structured, which affects its visual appeal and usability.
Missing Alt Attributes: Image elements on the landing page are missing the 'alt' attribute, which is essential for accessibility and SEO.
Missing Key Validation : List is missing key validation
Environment
You can assign me this under #hactoberfest tag
The text was updated successfully, but these errors were encountered: