website refactor

This commit is contained in:
2026-01-16 01:00:03 +01:00
parent ce7be39155
commit a98e3e3166
286 changed files with 5522 additions and 5261 deletions

View File

@@ -8,11 +8,10 @@ import { ApiError } from '../api/base/ApiError';
import { connectionMonitor } from '../api/base/ApiConnectionMonitor';
// Import notification system (will be used if available)
let notificationSystem: any = null;
try {
// Dynamically import to avoid circular dependencies
import('@/components/notifications/NotificationProvider').then(module => {
notificationSystem = module;
import('@/components/notifications/NotificationProvider').then(_module => {
// Notification system available
}).catch(() => {
// Notification system not available yet
});