import { StatusPage } from '@repo/ui/components'; import { useTranslation } from '@repo/core-i18n'; import { WEB_URL } from '../constants/web-url'; interface ComingSoonPageProps { /** Use inside ModuleLayout so the page fits under the app chrome */ embedded?: boolean; } export function ComingSoonPage({ embedded = false }: ComingSoonPageProps) { const { t } = useTranslation(); return ( ); } export function EmbeddedComingSoonPage() { return ; }