Skip to content

Commit 6a841b5

Browse files
committed
Updated docs
1 parent 07bdc1d commit 6a841b5

File tree

4 files changed

+49
-7
lines changed

4 files changed

+49
-7
lines changed

CHANGELOG.md

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,17 @@
22

33
All notable changes to SvelteForge Admin are documented here.
44

5-
## v1.0.0 -- February 2026
5+
## v1.0.0 -- March 2026
66

7-
Initial release. Full-featured admin dashboard with custom auth, RBAC, and a complete admin toolset.
7+
Initial release. Full-featured admin dashboard with custom auth, RBAC, built-in documentation site, and a complete admin toolset.
8+
9+
### Documentation Site
10+
11+
- 16-page built-in documentation at `/docs` with dedicated layout and sidebar navigation
12+
- Sections: Introduction, Getting Started, Project Structure, Authentication, Database, Routing, Components, Theming, User Management, Content Management, Analytics, Notifications, Settings, Testing, Deployment, API Reference
13+
- Responsive docs layout with mobile hamburger menu
14+
- DashboardPack premium promotion integrated throughout (header button, sidebar card, page callouts)
15+
- Tailwind Typography plugin (`@tailwindcss/typography`) for proper prose formatting
816

917
### Authentication & Security
1018

@@ -84,6 +92,8 @@ Initial release. Full-featured admin dashboard with custom auth, RBAC, and a com
8492
### UI & UX
8593

8694
- Command palette (Cmd+K) with navigation, search, and quick actions
95+
- Go Pro sidebar CTA with crown icon and PRO badge linking to DashboardPack
96+
- Documentation link in sidebar navigation
8797
- Page view transitions via View Transitions API
8898
- Responsive layout with collapsible sidebar on mobile
8999
- Dark/light mode with localStorage persistence
@@ -100,20 +110,20 @@ Initial release. Full-featured admin dashboard with custom auth, RBAC, and a com
100110

101111
### Developer Experience
102112

103-
- Svelte 5 runes API throughout ($props, $state, $derived, {@render})
104-
- Tailwind CSS 4 with OKLCH color system and @theme directive
113+
- Svelte 5 runes API throughout ($props, $state, $derived, $effect)
114+
- Tailwind CSS 4 with OKLCH color system, @theme directive, and Typography plugin
105115
- shadcn-svelte component library
106116
- Drizzle ORM with SQLite (WAL mode) and typed schema
107117
- Vitest unit tests with in-memory SQLite test database
108118
- Playwright E2E test setup
109119
- ESLint 9 + Prettier code quality tooling
110-
- Database seeder with sample data (admin, editor, viewer accounts)
120+
- Database seeder with sample data (50 users, 65 pages, 33 notifications)
111121
- pnpm as package manager
112122

113123
### Stack
114124

115125
- SvelteKit 2.50 + Svelte 5 + TypeScript 5
116-
- Tailwind CSS 4 + shadcn-svelte + tw-animate-css
126+
- Tailwind CSS 4 + @tailwindcss/typography + shadcn-svelte + tw-animate-css
117127
- Drizzle ORM + better-sqlite3
118128
- @oslojs/crypto + @oslojs/encoding + @node-rs/argon2
119129
- Arctic (OAuth)
@@ -133,3 +143,11 @@ Initial release. Full-featured admin dashboard with custom auth, RBAC, and a com
133143
- `2026-02-09` -- Add login, register, and logout auth pages with Argon2 password hashing
134144
- `2026-02-09` -- Add protected routes with auth redirect and dynamic user data in sidebar
135145
- `2026-02-10` -- Implement Arctic OAuth (Google + GitHub)
146+
- `2026-02-10` -- Add README with screenshots and project documentation
147+
- `2026-03-07` -- Add 16-page built-in documentation site at /docs
148+
- `2026-03-07` -- Add @tailwindcss/typography for docs prose formatting
149+
- `2026-03-07` -- Add Go Pro sidebar CTA with DashboardPack UTM tracking
150+
- `2026-03-07` -- Add Documentation link in sidebar navigation
151+
- `2026-03-07` -- Add DashboardPack premium template screenshots to README
152+
- `2026-03-07` -- Add comprehensive CHANGELOG
153+
- `2026-03-07` -- Bump version to 1.0.0

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "svelteforge-admin",
33
"private": true,
4-
"version": "0.0.1",
4+
"version": "1.0.0",
55
"type": "module",
66
"packageManager": "pnpm@10.28.1",
77
"scripts": {
@@ -30,6 +30,7 @@
3030
"@sveltejs/adapter-node": "^5.5.4",
3131
"@sveltejs/kit": "^2.53.4",
3232
"@sveltejs/vite-plugin-svelte": "^6.2.4",
33+
"@tailwindcss/typography": "^0.5.19",
3334
"@tailwindcss/vite": "^4.2.1",
3435
"@types/better-sqlite3": "^7.6.13",
3536
"@types/d3-array": "^3.2.2",

pnpm-lock.yaml

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@import "tailwindcss";
22
@import "tw-animate-css";
3+
@plugin "@tailwindcss/typography";
34

45
@source "../node_modules/layerchart";
56
@source "../node_modules/svelte-ux";

0 commit comments

Comments
 (0)