diff options
| author | 2026-04-01 10:47:28 +0800 | |
|---|---|---|
| committer | 2026-04-01 10:47:28 +0800 | |
| commit | ed0744635367a5bae9e486d796d7ba6ab696289c (patch) | |
| tree | 88fdd18f7baf8f082053df8764be7f0ccd025f25 /packages/docs/app/routes | |
| parent | c4dc0676d794bca2613be282867d369328ebf073 (diff) | |
| parent | 0bb6b264be3205ceb367f3010961684a992263dc (diff) | |
| download | DropOut-ed0744635367a5bae9e486d796d7ba6ab696289c.tar.gz DropOut-ed0744635367a5bae9e486d796d7ba6ab696289c.zip | |
Improve docs UI and Mermaid rendering (#125)
Refactor documentation for clarity and organization. Upgrade the
@biomejs/biome dependency to version 2.4.9. Clean up imports and improve
component structure in the documentation pages.
## Summary by Sourcery
Refine documentation rendering and UI components while updating tooling
dependencies.
New Features:
- Improve Mermaid diagram rendering in docs with explicit SVG rendering
and stricter security configuration.
Bug Fixes:
- Use stable keys for mapped feature and FAQ items on the docs home page
to avoid React key issues.
- Adjust field error list keys to avoid collisions and improve React
reconciliation.
Enhancements:
- Clean up and reorder exports, imports, and hook dependencies across UI
components for consistency and maintainability.
- Streamline docs routing and loader types by removing unused parameters
and simplifying language handling.
- Improve user-facing error and status messages with template literals
and clearer formatting.
Build:
- Upgrade @biomejs/biome to version 2.4.9 and consolidate Biome
configuration by removing redundant docs-specific settings.
Documentation:
- Tidy documentation page composition and table-of-contents handling for
clearer structure.
Diffstat (limited to 'packages/docs/app/routes')
| -rw-r--r-- | packages/docs/app/routes/home.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/docs/app/routes/home.tsx b/packages/docs/app/routes/home.tsx index fe561e4..26c0f52 100644 --- a/packages/docs/app/routes/home.tsx +++ b/packages/docs/app/routes/home.tsx @@ -110,7 +110,7 @@ const texts = { }, }; -export function meta({ params }: Route.MetaArgs) { +export function meta() { return [ { title: "DropOut - Modern Minecraft Launcher" }, { @@ -172,9 +172,9 @@ export default function Home({ params }: Route.ComponentProps) { {/* Features Grid */} <div className="grid md:grid-cols-2 lg:grid-cols-3 gap-6 mb-16"> - {t.features.items.map((item, i) => ( + {t.features.items.map((item) => ( <div - key={i} + key={item.title} className="p-6 rounded-lg border border-blue-600/20 bg-fd-card hover:border-blue-600/50 transition-colors" > <h3 className="font-semibold text-lg mb-2">{item.title}</h3> @@ -187,8 +187,8 @@ export default function Home({ params }: Route.ComponentProps) { <div className="text-center mb-16"> <h2 className="text-3xl font-bold mb-6">{t.why.title}</h2> <div className="max-w-3xl mx-auto space-y-4 text-left"> - {t.why.items.map((item, i) => ( - <div key={i} className="p-4 rounded-lg bg-fd-muted/50"> + {t.why.items.map((item) => ( + <div key={item.q} className="p-4 rounded-lg bg-fd-muted/50"> <p className="text-fd-foreground"> <span className="font-semibold">{item.q}</span> <br /> |