I am trying to add multiple languages to my site - I have followed these guides Introduction | Kirby CMS but am currently getting this error
“The default template does not exist”
/en has been appended to the url
site/languages/en.php
<?php
return [
'code' => 'en',
'default' => true,
'direction' => 'ltr',
'locale' => 'en_US',
'name' => 'English',
'url' => '/'
];
Hoping for any kind of direction on how to resolve this