import Layout from '@/components/layout/Layout' // Placeholder for QMS modules that are on the roadmap but not yet implemented. // Keeps navigation links and role redirects valid instead of 404-ing. export default function ComingSoon({ title, blurb }: { title: string; blurb?: string }) { return (

{title}

{blurb || 'This module is part of the QMS roadmap and is not built yet. The data model and navigation are already in place.'}

Coming soon
) }