feat: add automated docs pipeline and scaffold /docs folder

- Add sync-docs CI job: runs on push to main, copies /docs into sencho-docs repo via DOCS_REPO_TOKEN
- Scaffold /docs with mint.json, getting-started/introduction.mdx, getting-started/quickstart.mdx, features/overview.mdx
- Update CHANGELOG
This commit is contained in:
SaelixCode
2026-03-22 21:08:16 -04:00
parent c36ee93416
commit 9496b14f72
6 changed files with 141 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"$schema": "https://mintlify.com/schema.json",
"name": "Sencho",
"logo": {
"light": "",
"dark": ""
},
"favicon": "",
"colors": {
"primary": "#0F172A",
"light": "#3B82F6",
"dark": "#0F172A"
},
"navigation": [
{
"group": "Getting Started",
"pages": [
"getting-started/introduction",
"getting-started/quickstart"
]
},
{
"group": "Features",
"pages": [
"features/overview"
]
}
]
}