created about page and added link to navbar

This commit is contained in:
2024-02-16 17:24:05 +00:00
parent 12a759cd71
commit b8fd3b292f
5 changed files with 69 additions and 58 deletions

View File

@@ -16,3 +16,7 @@ use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return view('homepage');
});
Route::get('/about', function () {
return view('about');
});