Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • jpcardozx 100

    @jpcardozx

    Submitted

    What are you most proud of, and what would you do differently next time?

    I am most proud of the overall design and functionality of my project. The layout and styling came together well, and I was able to effectively implement responsive design principles to ensure the site looks good on various devices. I’m particularly happy with how I integrated the SVG elements to enhance the visual appeal of the cards.

    Next time, I would focus more on optimizing the performance of the site, especially regarding image handling and code efficiency. While the design is solid, I noticed that image URLs sometimes lead to misalignment issues, and my approach to managing these assets could be more streamlined. I would also invest more time in testing across different devices and browsers to catch any inconsistencies early on.

    What challenges did you encounter, and how did you overcome them?

    Aligning and positioning SVG elements correctly within the card layout proved difficult. I struggled with ensuring the SVGs did not overlap with text or other elements. I resolved this by using absolute positioning with careful adjustments of the top, left, width, and height properties. I also used the z-index property to manage stacking order and ensure the SVGs remained in the background.

    Handling images in production was challenging, as images often appeared misaligned or with incorrect dimensions when viewed live. I addressed this by adjusting the image CSS rules and using responsive design techniques, such as setting appropriate max-width and height properties. I also researched best practices for image optimization to reduce file sizes without sacrificing quality.

    These challenges helped me learn more about CSS positioning and responsive design, and I will apply these lessons to future projects to enhance my problem-solving skills.

    What specific areas of your project would you like help with?

    Image Handling: I often encounter issues with images becoming misaligned or not displaying correctly when the site goes live. I’d appreciate advice on best practices for managing image assets in production, especially how to maintain consistency across different devices and screen sizes.

    Code Optimization: My current method of handling image URLs leads to heavy code and potential performance issues. I’m looking for suggestions on how to streamline my code for better efficiency and how to implement best practices for image loading and display.

    P

    @meandrewaprianto

    Posted

    hi jpcardozx. nice work already complete this challenge, for me. you should used a picture element and trying to used border. So you can get a perfect circle image with border around.

    Here's the link for picture element, picture element

    0
  • P

    @meandrewaprianto

    Posted

    everything look fine. But. i think you forgot to add a background-color for the whole body webpage, and everything is good. Great Jobs,

    0
  • @MesrouaDjamel

    Submitted

    What are you most proud of, and what would you do differently next time?

    this is the first time I've used grid layout usually I use flex box in my next projects I'm going to integrate it.

    What challenges did you encounter, and how did you overcome them?

    i'm having trouble making the site responsive

    What specific areas of your project would you like help with?

    using grid with tailwinds

    P

    @meandrewaprianto

    Posted

    Great Work, I can't add any more comment cause this is my first time to see a code writing in next.js. but. Outstanding Projects. Congrats

    0
  • P

    @meandrewaprianto

    Posted

    it's look same with design great job, I would recommend using with semantic html. here's the reference HTML Semantic

    Marked as helpful

    0
  • P

    @meandrewaprianto

    Posted

    wow. great solution🎉🎉👌, just make sure you use CSS Variables so it don't hard coded inside any element

    :root {
      --cream-bg: #f2eae2;
      --pure-white: #ffffff;
      --aurometal-saurus: #6c7289;
      --gunmetal: #1c232b;
      --deep-aquamarine: #3d8168;
      --deep-aqumarine-hover: #1a4032;
    }
    
    body {
       background-color: var(--cream-bg)
    }
    

    so when you want update the background, only one place not every single element you need to update.

    0
  • P

    @meandrewaprianto

    Posted

    Nice job using variable css, For me. i like using css reset

    * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
    }
    

    but overall is good solutions, great job ^-^

    1
  • P

    @meandrewaprianto

    Posted

    maxing external css could be better, separation of html and css

    0