I've been struggling with this issue for a while now, and after doing a lot of research online, I came across a solution that is supposed to work in index.css
body {
background-image: url(../src/components/images/photo.jpeg) no-repeat center center
fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
However, it doesn't seem to be working for me. Can someone please help me figure out how to fix this?