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

  • @Yashbabani0

    Submitted

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

    Can anyone help me? Everything works fine in my local environment, but after uploading to Vercel and Netlify, the background color for the data box and all images are not showing.

    Roman 110

    @bWoodyR

    Posted

    There might be 2 ways how to fix your images.

    1. Add images to "public" folder inside "root"

    • this way you can access image in your component like:
    <img src="/image.png" alt="image" />
    

    2. Add images to "assets" folder inside "src" folder

    • folder name "assets" don't really matter here, you can call it whatever you want

    inside your component where you want to use it, you can import image like:

    import Image from "../assets/image.png"
    

    and then use it

    <img src={Image} alt="image" />
    

    Obviously you can change name's and path's as you wish. Btw nice solution

    Marked as helpful

    1
  • Roman 110

    @bWoodyR

    Posted

    Got this for Peer review. Links not working anymore, but all in all very nice job.

    0