updated footer and added about page

This commit is contained in:
2025-11-16 16:20:41 +10:00
parent 74e9e39722
commit e967bdde71
4 changed files with 26 additions and 0 deletions

View File

@@ -41,6 +41,10 @@ Route::get('/register', [AuthController::class, 'showRegister'])->name('register
Route::post('/register', [AuthController::class, 'postRegister'])->name('register.store');
Route::get('/update-email', [AuthController::class, 'updateEmail'])->name('update.email');
Route::get('/about', function () {
return view('about');
})->name('about');
Route::get('/contact', function () {
return view('contact');
})->name('contact');