February 21, 20261.0.99v1.0.99RSS

v1.0.99 — [UI/UX] Product name in sidebar header is always blank — causes context loss

Release Notes

In AppSidebar, ProductSidebar is instantiated with projectName="" (hard-coded empty string). The sidebar header shows 'SaaS Factory / AI-Powered Builder' regardless of which product is open. When a user is deep in a product, they lose the context of which product they're in unless they read the breadcrumb header. This is especially disorienting with multiple products.

Category: navigation File: src/components/app-sidebar.tsx Recommendation: Wire the ProductProvider's projectName into AppSidebar. Since AppSidebar is a client component that reads pathname, add a sub-component that reads from ProductContext (or fetches minimally from the URL) and renders the product name in the sidebar header, replacing or supplementing the 'SaaS Factory' branding when in product scope. Show 'SaaS Factory > [Product Name]' in the header.