diff --git a/app/Http/routes.php b/app/Http/routes.php index 51241bf2964b008b9e3d81811056331b49d44c68..6cbb84cd8b4549d12a1aec5de5172bf057e6a966 100644 --- a/app/Http/routes.php +++ b/app/Http/routes.php @@ -16,32 +16,32 @@ /** ADD ALL LOCALIZED ROUTES INSIDE THIS GROUP **/ Route::get('/', function() { - return view('index', [ + return view('index', [ 'title' => 'MetaGer: Sicher suchen & finden, Privatsphäre schützen', 'homeIcon']); }); Route::get('impressum', function() { - return view('impressum') - ->with('title', 'Impressum') - ->with('css', 'impressum.css'); + return view('impressum') + ->with('title', 'Impressum') + ->with('css', 'impressum.css'); }); Route::get('about', function() { - return view('about') - ->with('title', 'Über Uns'); + return view('about') + ->with('title', 'Über Uns'); }); Route::get('team', function() { - return view('team.team') - ->with('title', 'Team'); + return view('team.team') + ->with('title', 'Team'); }); Route::get('team/pubkey-wsb', function() { - return view('team.pubkey-wsb') - ->with('title', 'Team'); + return view('team.pubkey-wsb') + ->with('title', 'Team'); }); Route::get('kontakt', function() @@ -59,6 +59,7 @@ return view('datenschutz') ->with('title', 'Datenschutz und Privatsphäre') ->with('css', 'privacy.css'); + }); Route::get('hilfe', function() { @@ -66,6 +67,4 @@ ->with('title', 'MetaGer - hilfe') ->with('css', 'help.css'); }); - }); - - + }); \ No newline at end of file