File tree Expand file tree Collapse file tree
skills/using-tanstack-superpowers Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Project Examples (Any Domain)
2+
3+ Use these examples as memory anchors. Pick the closest complexity tier.
4+
5+ ## Simple
6+ ** Example** : Documentation site with a few routes.
7+ - Routes: ` / ` , ` /docs ` , ` /faq `
8+ - Data: static loader data
9+ - Goal: fast routing, minimal state
10+
11+ ## Medium
12+ ** Example** : Authenticated app with forms and loaders.
13+ - Routes: ` /login ` , ` /app ` , ` /app/profile `
14+ - Data: server functions + route loaders
15+ - Goal: typed mutations, stable UX
16+
17+ ## Complex
18+ ** Example** : Large app with streaming SSR.
19+ - Routes: nested layouts, search params, streaming
20+ - Data: prefetch + suspense boundaries
21+ - Goal: performance under load, strict type safety
Original file line number Diff line number Diff line change @@ -23,3 +23,4 @@ allowed-tools:
2323
2424## References
2525- ` docs/complexity-tiers.md ` for simple/medium/complex examples
26+ - ` docs/project-examples.md ` for generic project examples
You can’t perform that action at this time.
0 commit comments