<?php
	
$app->get('/home', function() use($app) {
	
	$app->response->redirect($app->urlFor('home'), '303');

})->name('index');