feat(i18n): Complete localization of marketing frontend with react-i18next, prefixed URLs, JSON migrations, and automation

This commit is contained in:
Codex Agent
2025-10-03 13:05:13 +02:00
parent 1845d83583
commit 60f8de9162
46 changed files with 3454 additions and 590 deletions

View File

@@ -11,18 +11,6 @@ use App\Http\Controllers\Auth\VerifyEmailController;
use Illuminate\Support\Facades\Route;
Route::middleware('guest')->group(function () {
Route::get('register', [RegisteredUserController::class, 'create'])
->name('register');
Route::post('register', [RegisteredUserController::class, 'store'])
->name('register.store');
Route::get('login', [AuthenticatedSessionController::class, 'create'])
->name('login');
Route::post('login', [AuthenticatedSessionController::class, 'store'])
->name('login.store');
Route::get('forgot-password', [PasswordResetLinkController::class, 'create'])
->name('password.request');
@@ -54,7 +42,4 @@ Route::middleware('auth')->group(function () {
Route::post('confirm-password', [ConfirmablePasswordController::class, 'store'])
->middleware('throttle:6,1')
->name('password.confirm.store');
Route::post('logout', [AuthenticatedSessionController::class, 'destroy'])
->name('logout');
});