Add Astro + MDX docs workspace

Create a separate docs project with Astro and MDX so product documentation can evolve independently from the Electron app while supporting the planned TS/MDX migration.
This commit is contained in:
xRangerDE
2026-02-13 10:00:12 +01:00
parent eaa6d637ff
commit 301132c9ee
10 changed files with 6315 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
:root {
color-scheme: dark;
font-family: 'Segoe UI', Tahoma, sans-serif;
background: #101216;
color: #f2f4f8;
}
body {
margin: 0;
min-height: 100vh;
background: radial-gradient(circle at top, #1a2330 0%, #101216 55%);
}
.container {
max-width: 860px;
margin: 0 auto;
padding: 40px 20px;
}
a {
color: #5ca3ff;
}