// Firebase completely removed - using mock authentication only // This file is kept for compatibility but exports nothing console.warn('Firebase authentication has been replaced with mock authentication system'); // Export empty objects to prevent import errors export const auth = {}; export const db = {}; // Mock firebase functions that might be imported elsewhere export const signInWithEmailAndPassword = () => Promise.reject(new Error('Firebase disabled - use mock auth')); export const signOut = () => Promise.reject(new Error('Firebase disabled - use mock auth')); export const onAuthStateChanged = () => () => {};