Skip to content

Commit 72af9a3

Browse files
authored
Merge pull request #49 from Mastersam07/feat/docs-site
feat: docs site
2 parents 291000e + ab5706d commit 72af9a3

30 files changed

Lines changed: 8480 additions & 4 deletions

assets/brand/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ of them, then re-render with `rsvg-convert` (see commands below).
1010
| `kaisel-icon.svg` | Master mark on the dark tile. Source of truth. |
1111
| `kaisel-icon-1024.png` | Hi-res square tile. Downscale for any avatar or icon slot. |
1212
| `kaisel-icon-rounded.svg/png` | App-icon tile with rounded corners. Avatars: X, Discord, Medium, pub.dev publisher. |
13-
| `kaisel-mark.svg/png` | Transparent mark. Package READMEs (core, lint, devtools); anywhere the background should show through. |
13+
| `kaisel-mark.svg/png` | Transparent mark for dark backgrounds. Package READMEs (core, lint, devtools); docs-site logo and hero (dark theme). |
14+
| `kaisel-mark-light.svg/png` | Transparent mark with a deepened ramp for white backgrounds. Docs-site logo and hero (light theme). |
1415
| `kaisel-logo-dark.svg/png` | Transparent lockup, white wordmark. README headers on dark backgrounds. |
1516
| `kaisel-logo-light.svg/png` | Transparent lockup, slate wordmark. README headers on light backgrounds. |
1617
| `kaisel-banner.png` | Lockup on the dark tile. dev.to covers, Medium headers, slides — wide slots that want a baked background. |

assets/brand/kaisel-mark-light.png

93.9 KB
Loading

assets/brand/kaisel-mark-light.svg

Lines changed: 89 additions & 0 deletions
Loading

packages/kaisel/doc/migration/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ your migration branch will actually look like.
1414

1515
| Guide | Best for | Effort |
1616
| ------------------------------------------- | ----------------------------------------------------- | ----------------------- |
17-
| [`from-go-router.md`](from-go-router.md) | Apps using `GoRouter` with string paths | ~3–4 days, 30 screens |
18-
| [`from-auto-route.md`](from-auto-route.md) | Apps using `@AutoRouterConfig` with `build_runner` | ~2 days, 30 screens |
19-
| [`from-navigator.md`](from-navigator.md) | Apps on Flutter's `Navigator` — imperative `push`, named routes, or the Router/Pages API (2.0) | ~2–4 days, 30 screens (less from named/2.0) |
17+
| [From go_router](from-go-router.md) | Apps using `GoRouter` with string paths | ~3–4 days, 30 screens |
18+
| [From auto_route](from-auto-route.md) | Apps using `@AutoRouterConfig` with `build_runner` | ~2 days, 30 screens |
19+
| [From Navigator](from-navigator.md) | Apps on Flutter's `Navigator` — imperative `push`, named routes, or the Router/Pages API (2.0) | ~2–4 days, 30 screens (less from named/2.0) |
2020

2121
## Which guide is for you
2222

packages/kaisel/pubspec.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version: 1.0.0
44
repository: https://github.com/Mastersam07/kaisel
55
homepage: https://github.com/Mastersam07/kaisel
66
issue_tracker: https://github.com/Mastersam07/kaisel/issues
7+
documentation: https://kaisel.dev
78
topics:
89
- router
910
- navigation

packages/kaisel_core/pubspec.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version: 1.0.0
44
repository: https://github.com/Mastersam07/kaisel/tree/dev/packages/kaisel_core
55
homepage: https://github.com/Mastersam07/kaisel/tree/dev/packages/kaisel_core
66
issue_tracker: https://github.com/Mastersam07/kaisel/issues
7+
documentation: https://kaisel.dev
78
resolution: workspace
89
topics:
910
- router

packages/kaisel_lint/pubspec.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version: 0.5.1
44
repository: https://github.com/Mastersam07/kaisel/tree/dev/packages/kaisel_lint
55
homepage: https://github.com/Mastersam07/kaisel/tree/dev/packages/kaisel_lint
66
issue_tracker: https://github.com/Mastersam07/kaisel/issues
7+
documentation: https://kaisel.dev/tooling/lints/
78

89
screenshots:
910
- description: The kaisel mark

site/.gitignore

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# build output
2+
dist/
3+
# generated types
4+
.astro/
5+
6+
# dependencies
7+
node_modules/
8+
9+
# logs
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
14+
15+
16+
# environment variables
17+
.env
18+
.env.production
19+
20+
# macOS-specific files
21+
.DS_Store
22+
23+
# generated by scripts/sync-docs.mjs — canonical sources live in
24+
# skills/kaisel/, packages/kaisel/doc/migration/, and ROADMAP.md
25+
src/content/docs/guides/
26+
src/content/docs/migration/
27+
src/content/docs/roadmap.md
28+
src/content/docs/tooling/devtools.md
29+
src/content/docs/tooling/lints.md

site/.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode"],
3+
"unwantedRecommendations": []
4+
}

site/.vscode/launch.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"command": "./node_modules/.bin/astro dev",
6+
"name": "Development server",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}

0 commit comments

Comments
 (0)