The above code is broken because each route would return the following:
- //about
- //services
- //contact
All these paths will be absolute url when using pathFor
.
If the group was to be changed to be $app->group('', fun...)
this would cause an error with FastRoute if the first
get route is $app->get('/', fun...)
.