import { Button } from "@/components/ui/button" import { useProduct } from "@/contexts/product-context" import { useProductSwitch } from "@/contexts/product-route-sync" import { brandForProduct } from "@/lib/product-brand" /** * Placeholder dashboard for products whose IA hasn't been built yet * (currently `exxat-one-schools`, `exxat-one-sites`). * They share the routing chrome (sidebar, theme, scope) so the user can see * what switching does, but the in-product surfaces are designed in their * own briefs (per `docs/multi-product-routing-pattern.md` — "What this doc * does not cover"). * * Renders the active product's wordmark + a friendly explainer + a one-tap * way back to Exxat Prism, where the working IA lives today. */ export default function ProductComingSoon() { const { product, productBrandColors } = useProduct() const switchProduct = useProductSwitch() const brand = brandForProduct(product, null, productBrandColors) return (

{brand.label ?? `${brand.prefix ?? "Exxat"} ${brand.suffix}`} is coming soon

The team is still designing this product’s navigation and screens. Switch to Exxat Prism to keep working with the patterns that ship today, or watch this space.

) }