chore: remove StationSearch, dead Volt SFCs, mobile prototype, and fix homepage CTAs

This commit is contained in:
Ovidiu U
2026-04-08 09:24:40 +01:00
parent c935903614
commit 7b6aaac661
20 changed files with 1379 additions and 1158 deletions

View File

@@ -1,17 +1,12 @@
<?php
use App\Livewire\Public\FuelFinder;
use App\Livewire\Public\StationSearch;
use Illuminate\Support\Facades\Route;
//Route::get('/', FuelFinder::class)->name('home');
Route::view('/', 'homepage')->name('home');
Route::get('/fuel-finder', FuelFinder::class)->name('fuel-finder');
Route::get('/stations', StationSearch::class)->name('stations.search');
Route::middleware(['auth', 'verified'])->group(function () {
Route::view('dashboard', 'dashboard')->name('dashboard');
});