Add Technological Foundations documentation page - #5835
Conversation
|
Two things:
If you'd trust Claude:
Then I'd say "learn more -> tech foundations page" then. The page is still useful for more tech-minded people and contributors to get a sense of NiceGUI internals. Also brings AI agents up to speed. |
Add a new documentation page explaining NiceGUI's technology stack: Vue.js, Quasar, FastAPI, Socket.IO, and CSS engines. Each section includes explanatory text with diagrams or visual aids. Add a "learn more" link in the features section pointing to the new page, keeping external links to upstream projects intact. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
76e2a48 to
974f1a6
Compare
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
@falkoschindler Now it's purely an addition then, similar to security best practices. Should be less controversial to review as well. |
…ams, responsive breakpoints, and text tweaks Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
falkoschindler
left a comment
There was a problem hiding this comment.
Thanks, @evnchn!
After some minor improvements here and there the PR is ready to merge. 🚀

Motivation
The homepage Features section currently links out to external websites for core technologies (vuejs.org, quasar.dev, fastapi.tiangolo.com, tailwindcss.com). This is an SEO problem: outbound links on high-traffic pages bleed PageRank to third-party domains instead of keeping visitors within the NiceGUI documentation. Search engines also favor sites with strong internal linking over those that immediately send users elsewhere.
Additionally, NiceGUI's technology stack explanations are currently scattered across markdown files that most users never see:
README.mdlines 95–106, 143–154 — "Why?" section and "Architecture" sectionCONTRIBUTING.mdlines 21–28 — "Tech Stack" bullet listDEPENDENCIES.md— version list of web dependenciesNone of this information is on the documentation website itself. This PR creates a proper, user-facing documentation page that explains the technology choices and how they fit together.
Implementation
New
section_foundations.pydocumentation page — "Technological Foundations" with six sections, each using@doc.part()with side-by-side grid layout (2fr text / 1fr visual):__init__params vs.props(), occasional renames.props()examplesui.run_with(), ASGI mountingHomepage link updates:
Documentation overview: added import and tile for the new section.
Progress