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

  • Charles 80

    @Ghost-Writer-2

    Submitted

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

    I practiced a bit more on responsive layouts and I got to finally understand how to use the :nth-child and :nth-last-child Just discovered I don't properly use Semantic HTML elements so in my next project that's what I'll do differently

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

    I got frustrated trying to change the color of the numbers in an ordered list but I managed to google out a few tricks

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

    Making responsive layouts

  • @starberries

    Submitted

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

    This was one where I definitely had to go back and adjust my classes and HTML tags a few times as I ended up realizing better ways to accomplish what I was trying to do partway through, especially with styling button-like anchors, but I feel like that helped me get a better grasp on how better to handle them from the start in the future. I also learned some nifty ways of making elements easier to resize during development and for responsiveness.

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

    I had to reconsider how implement button-styled anchors if I wanted the text to be styled on its own colored background, especially since I wanted a way to make it easier to adjust if the size of the buttons were to change, so I ended up with the following:

    :root {
        --button-height: 2.2rem;
    }
    
    .socials-main ul li a {
        height: var(--button-height);
        padding: calc(((var(--button-height) - 1em) / 2) - 0.125rem) 0;
    }
    

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

    I'm pretty happy with how this turned out, but I had to do a good bit of improvising and adjusting as I implemented my styling, so if there's any areas where I could have done better with keeping the code clean/avoiding redundancies or anything else of that sort, I'd be happy to hear it!

  • P

    @gusanchefullstack

    Submitted

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

    Use of web components and media queries

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

    Positioning card for match with preview

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

    SVG stroke inside.

    P

    @marcel-schmidt-dev

    Posted

    1. Semantic HTML:

      • The project makes good use of semantic HTML5 tags like <article>, <section>, and <footer>, which helps structure the content properly.
    2. Responsive Design:

      • The design is mobile-first, ensuring that the page looks good on smaller devices and scales up for larger screens using media queries.
    3. CSS Flexbox:

      • Flexbox is used to create a flexible layout that adjusts nicely to different screen sizes and keeps content centered and aligned.
    4. Web Components:

      • The use of Web Components (HTMLElement and shadow DOM) is modern, modular, and keeps the styling and functionality encapsulated. This is a great practice for reusable and maintainable components.
    1. Accessibility:

      • Consider improving accessibility by adding ARIA attributes where necessary. For example, ensure that icons and interactive elements have descriptive labels for screen readers.
      • Alt text for images is crucial for users with visual impairments. Ensure that all images have appropriate alt descriptions.
    2. Performance Optimization:

      • Consider inlining critical CSS for faster initial rendering. This can help reduce render-blocking resources, improving performance, especially on mobile networks.
    3. Error Handling:

      • In case of using external assets (e.g., fonts, images, or CSS), implement fallback mechanisms for loading failures.
    4. Browser Compatibility:

      • While using Web Components is a great practice, ensure that appropriate polyfills are included for older browsers that may not support shadow DOM or custom elements.
    • Code Structure: The project code is clean and well-structured, but consider adding comments in critical sections, especially for future collaborators.
    • Documentation: Ensure that the README provides instructions for installing dependencies (if any) and running the project locally, even if it’s a simple static site.
    • Cross-browser Testing: Verify that the component behaves consistently across different browsers and devices, especially given the use of newer technologies like shadow DOM.

    This project is a well-executed solution with modern front-end practices like Web Components and Flexbox. With minor improvements in accessibility and performance, it can be a top-notch implementation.

    0
  • P

    @marcel-schmidt-dev

    Posted

    look good, but preview dont work

    0
  • P

    @robcrock

    Submitted

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

    The process I developed and followed to complete this challenge was very intuitive. I never felt lost. I alway knew exactly what to work on and test next.

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

    I overcame some tricky CSS problems with the Tailwind group utility and improved the state management in the app with the useReducer hook.

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

    The app could be a little more modular. I could have also added tests. I didn't do the responsive part of this challenge since the rest of it was so involved.

    P

    @marcel-schmidt-dev

    Posted

    Great Job, looks flawless

    0
  • P

    @kaamiik

    Submitted

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

    This challenge is part of JS fundamentals and the most thing I proud practicing more and more java script.

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

    • There was some form text and radio inputs inside a grid layout. this part was challenging.

    • Positioning the header, main and footer in the whole page was also challenging.

    • On the JS There is two part. One for validation of the inputs and enabling or disabling for reset button. And one for calculating bill based on tips and number of people and updating values.

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

    Please take a look at the different parts of my code and if you see any issues, give me feedback so I can improve. Thank you. Specially on the JS part

    P

    @marcel-schmidt-dev

    Posted

    Nice Solution, but i found a little bug. When i type 0 in the number of people input, the error-message is ontop of the the input and prevents to click on input again

    Marked as helpful

    0
  • P

    @Temceo

    Submitted

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

    Dynamically linking to the data in json / JavaScript with minimal amount of code.

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

    Overlaying cards. After some research css grid was best option.

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

    Feedback on semantic html and any refactoring tips.

    P

    @marcel-schmidt-dev

    Posted

    Your Javascript looks great, i didnt notice you can handle the buttons like that

    0
  • P

    @marcel-schmidt-dev

    Posted

    Nice Solution, but i can't use other E-Mail's then @gmail.com

    0
  • John Mirage 1,590

    @john-mirage

    Submitted

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

    I'm proud of my typescript code.

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

    My main issue was to make the tooltip accessible which is not a easy task. I overcome this issue by copying the ARIA Authoring Practices Guide: Menu button pattern and adapting it to typescript.

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

    Accessibility

  • P

    @marcel-schmidt-dev

    Posted

    Hello guys, i feel realy bad in positioning elements like images. I hope you can help me to improve thank you :D

    0
  • P

    @marcel-schmidt-dev

    Posted

    Hello and congratulations for finish this challenge.

    I have a few tips to improve it:

    This will remove the whitespace under the image

    img{
       display: block;
    }
    

    And you should know that the body normaly fits to its content. To use grid on it, use the display height, so the content can center correcly

    body{
       min-height: 100vh;
    }
    

    Hope this will help 😀😉

    0