mirror of
https://github.com/zen-browser/www
synced 2026-04-25 17:14:56 +02:00
- Added i18n configuration to `astro.config.mjs` for managing locales. - Introduced utility functions for locale handling in `i18n.ts`. - Updated various components (e.g., `BackButton`, `Button`, `Community`, `Footer`, `Hero`, `NavBar`, etc.) to utilize localized strings. - Created new localized pages for `about`, `donate`, `download`, `release-notes`, and others. - Removed outdated pages and adjusted imports to reflect new structure. - Enhanced the `ModsList` component to support localization. - Added English language JSON file for translations. - Improved overall code organization and structure for better maintainability.
13 lines
208 B
JSON
13 lines
208 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
}
|
|
} |