diff --git a/routes/web.php b/routes/web.php index b3b4938..707d73d 100644 --- a/routes/web.php +++ b/routes/web.php @@ -17,6 +17,12 @@ use Illuminate\Support\Facades\Route; Route::get('/login', function () { return view('auth.login'); }); +Route::get('/about-us', function () { + return view('about-us'); +}); +Route::get('/contact-us', function () { + return view('contact-us'); +}); Route::get('index/{locale}', [App\Http\Controllers\HomeController::class, 'lang']);