Add placeholder images, enhance alert styles, and implement theme toggle component with dark mode support

This commit is contained in:
pacnpal
2025-02-23 22:12:26 -05:00
parent 27e584f427
commit 0ba7add72f
44 changed files with 2188 additions and 227 deletions

View File

@@ -1,11 +1,57 @@
<?php
use Illuminate\Support\Facades\Route;
use App\Livewire\Counter;
Route::get('/', function () {
return view('welcome');
})->name('home');
use App\Livewire\Counter;
Route::get('/counter', Counter::class);
});
// Parks routes
Route::get('/parks', function () {
return 'Parks Index';
})->name('parks.index');
// Rides routes
Route::get('/rides', function () {
return 'Rides Index';
})->name('rides.index');
// Auth routes
Route::get('/login', function () {
return 'Login';
})->name('login');
Route::get('/register', function () {
return 'Register';
})->name('register');
Route::post('/logout', function () {
return 'Logout';
})->name('logout');
// Settings routes
Route::get('/settings', function () {
return 'Settings';
})->name('settings');
// Legal routes
Route::get('/terms', function () {
return 'Terms';
})->name('terms');
Route::get('/privacy', function () {
return 'Privacy';
})->name('privacy');
// Profile routes
Route::get('/profile/{username}', function () {
return 'Profile';
})->name('profile.show');
// Search route
Route::get('/search', function () {
return 'Search';
})->name('search');