From b09531c74f0de88936506e043f18660e67b0df8e Mon Sep 17 00:00:00 2001 From: Steven Fox <62109327+steven-fox@users.noreply.github.com> Date: Wed, 21 May 2025 11:08:20 -0400 Subject: [PATCH] add redirect from /t-shirt to /mobile --- routes/web.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/routes/web.php b/routes/web.php index c3debfe1..5b2be5c1 100644 --- a/routes/web.php +++ b/routes/web.php @@ -23,6 +23,8 @@ Route::view('/article', 'article')->name('article'); Route::view('mobile', 'early-adopter')->name('early-adopter'); Route::redirect('ios', 'mobile'); +Route::redirect('t-shirt', 'mobile'); +Route::redirect('tshirt', 'mobile'); Route::view('privacy-policy', 'privacy-policy'); Route::view('terms-of-service', 'terms-of-service'); Route::view('partners', 'partners')->name('partners');