dealhub/routes/web.php
kusowl 33cbdea12b feat(landing page): add navbar and hero section
- change root route '/' to HomeController
- add main layout
- add navbar and hero blade component
- add custom tailwind classes
- separate css files for button component
2026-01-07 17:03:18 +05:30

7 lines
141 B
PHP

<?php
use App\Http\Controllers\HomeController;
use Illuminate\Support\Facades\Route;
Route::get('/', HomeController::class)->name('home');