What controller should be responsible for static pages?
I'm trying to avoid returning a View directly from routes and give that responsibility to controllers. What controller or what should be the controller name that handles static HTML pages like about us, privacy policy, etc.
Personally, I would use the Router's view method over a controller, it is clear what it does, and does not rely on creating a dumb controller as a dumping ground for these pages: