404
Out of Bounds!
It looks like you've navigated to a route that doesn't exist. Below is some Swift code inspiration to help guide you back!
// Swift Tip: KeyPaths can make routing dynamic & clean.
// Quote: 'The only limit to realization of tomorrow is doubts of today.'
struct RouterResolver {
let destination = "Home"
func navigateHome() {
let pathKey = \RouterResolver.destination
print("Safe redirect to: \(self[keyPath: pathKey])")
}
}