Firebase Not Configured

Your Firebase environment variables are not set correctly. The application cannot connect to Firebase services.

To fix this, please:

  1. Create a .env.local file in the root of your project.
  2. Add your Firebase project configuration to the file:
NEXT_PUBLIC_FIREBASE_API_KEY=your_api_key
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN=your_auth_domain
NEXT_PUBLIC_FIREBASE_PROJECT_ID=your_project_id
NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET=your_storage_bucket
NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID=your_sender_id
NEXT_PUBLIC_FIREBASE_APP_ID=your_app_id

After adding the environment variables, you must restart your development server for the changes to take effect.