Fix English homepage routing
All checks were successful
Deploy / Deploy to Production (push) Successful in 6s

Add dedicated route for /en to display home page in English using Kirby's multilingual system.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
isUnknown 2026-01-21 11:17:25 +01:00
parent 9b4bd4b731
commit 7575e5adbc

View file

@ -25,6 +25,18 @@ return [
);
}
],
// English homepage
[
'pattern' => 'en',
'action' => function() {
$home = page('home');
if ($home) {
site()->visit($home, 'en');
return $home;
}
return null;
}
],
// French products (default)
[
'pattern' => '(:any)',