aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/packages/docs/app/routes/home.tsx
diff options
context:
space:
mode:
authorNatsuu <natsukawa247@outlook.com>2026-02-27 17:18:25 +0800
committerGitHub <noreply@github.com>2026-02-27 17:18:25 +0800
commit81a62402ef6f8900ff092366121a9b7a4263ba52 (patch)
tree119109c62331d4d26612e2df7726cee82d1871f5 /packages/docs/app/routes/home.tsx
parent3e3144a2c6c62375c2949cb5e9b03f17511fccbe (diff)
downloadDropOut-81a62402ef6f8900ff092366121a9b7a4263ba52.tar.gz
DropOut-81a62402ef6f8900ff092366121a9b7a4263ba52.zip
Restructure docs into manual/development and add implementation docs (#94)
## Summary by Sourcery Restructure documentation into separate manual and development sections, introduce detailed internal implementation docs for auth/Java/mod loaders, and update site navigation, landing page links, and MDX tooling (Mermaid, card styling) to match the new structure and tech stack. Enhancements: - Enable Mermaid rendering support in the docs app and add a reusable Mermaid React component. - Refine Docs page rendering by customizing Card styling and removing redundant in-page titles/descriptions rendered by the layout. - Align docs source configuration and routing comments with the new manual-based default paths. Documentation: - Split user-facing docs under a new manual section and move contributor content into a dedicated development section for both English and Chinese. - Add comprehensive internal implementation documentation covering authentication, Java management, mod loader/version merging, event bus, and architecture patterns in both English and Chinese. - Update existing feature docs (mod loaders, Java, authentication) and getting-started/troubleshooting pages to be more conceptual, pointing to implementation docs for technical details. - Refresh architecture docs to reflect the React/Zustand frontend stack and add Mermaid-based architecture diagrams. - Adjust navigation labels, home-page CTAs, and doc links to target the new manual/development structure and routes. --------- Co-authored-by: 简律纯 <i@jyunko.cn>
Diffstat (limited to 'packages/docs/app/routes/home.tsx')
-rw-r--r--packages/docs/app/routes/home.tsx14
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/docs/app/routes/home.tsx b/packages/docs/app/routes/home.tsx
index 66b5333..427bf4e 100644
--- a/packages/docs/app/routes/home.tsx
+++ b/packages/docs/app/routes/home.tsx
@@ -10,7 +10,7 @@ const texts = {
subtitle: 'Modern. Reproducible. Developer-Grade.',
description: 'Built with Tauri v2 and Rust for native performance and minimal resource usage',
start: 'Get Started',
- features: 'Features',
+ development: 'Development',
},
features: {
items: [
@@ -42,7 +42,7 @@ const texts = {
subtitle: '现代、可复现、开发者级',
description: '基于 Tauri v2 和 Rust 构建,拥有原生性能和极低的资源占用',
start: '开始使用',
- features: '功能特性',
+ development: '参与开发',
},
features: {
items: [
@@ -107,10 +107,10 @@ export default function Home({ params }: Route.ComponentProps) {
{t.hero.start}
</a>
<a
- className="bg-fd-secondary hover:bg-fd-secondary/80 text-fd-secondary-foreground font-semibold rounded-lg px-6 py-3 transition-colors cursor-pointer"
- href={`${localePrefix}/docs/features`}
+ className="bg-fd-secondary hover:bg-fd-secondary/80 text-fd-secondary-foreground font-semibold rounded-lg px-6 py-3 transition-colors cursor-pointer border border-blue-600/50"
+ href={`${localePrefix}/docs/development`}
>
- {t.hero.features}
+ {t.hero.development}
</a>
</div>
</div>
@@ -129,7 +129,7 @@ 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) => (
- <div key={i} className="p-6 rounded-lg border border-fd-border bg-fd-card">
+ <div key={i} 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>
<p className="text-sm text-fd-muted-foreground">
{item.desc}
@@ -162,7 +162,7 @@ export default function Home({ params }: Route.ComponentProps) {
</p>
<a
className="inline-block bg-blue-600 hover:bg-blue-700 text-white font-semibold rounded-lg px-8 py-3 transition-colors"
- href={`${localePrefix}/docs/getting-started`}
+ href={`${localePrefix}/docs/manual/getting-started`}
>
{t.cta.button}
</a>