feat: integrate Firebase Cloud Messaging for push notifications
Some checks failed
Build frontend / build (push) Failing after 24s

This commit is contained in:
Claw AI
2026-03-31 19:50:48 +00:00
parent 81674c4aa7
commit 2bea2d190c
6 changed files with 1213 additions and 1 deletions

View File

@ -41,6 +41,7 @@ import { motion, AnimatePresence } from "framer-motion";
import AuthService from "./services/AuthService";
import { UserRole, UserRoleLabels } from "./enums/UserRole";
import "./i18n/config";
import NotificationHandler from "./components/NotificationHandler";
export default function ClientLayout({ children }) {
const { t, i18n } = useTranslation();
@ -798,6 +799,7 @@ export default function ClientLayout({ children }) {
</div>
</footer>
)}
<NotificationHandler />
</>
);
}