One thing I don't understand is how to import images, what does the src url look like? Anything I try fails with a 404 (Not Found)
Not tested, but they should be available through /static/{filename} from what I've heard.
Yes you can put images in static/ beside your pages/ folder and refer to them in CSS with url(static/myimage.jpg) or html <img src="static/blah.png">. I did the former here: https://github.com/sedubois/realate/blob/master/components/Header.js#L12
Most helpful comment
Yes you can put images in
static/beside yourpages/folder and refer to them in CSS withurl(static/myimage.jpg)or html<img src="static/blah.png">. I did the former here: https://github.com/sedubois/realate/blob/master/components/Header.js#L12