feat(firebase): Add Firebase SDK and initialize Analytics

This commit integrates the Firebase SDK into the application to enable Firebase services, starting with Google Analytics.

Key changes include:
- Added the `firebase` package as a dependency.
- Included Firebase project configuration variables in the production environment file.
- Created a new `firebase.ts` utility to centralize Firebase app initialization.
- Integrated the `FirebaseAnalytics` component into the root layout to enable analytics tracking across the entire application.
This commit is contained in:
AmirReza Jamali
2025-10-04 09:28:40 +03:30
parent df8deaee9b
commit b58ea368ec
13 changed files with 1147 additions and 23 deletions
@@ -0,0 +1,11 @@
"use client";
import useFirebase from "@/hooks/use-firebase";
import type { PropsWithChildren } from "react";
const FirebaseProvider = ({ children }: PropsWithChildren) => {
useFirebase();
return <>{children}</>;
};
export default FirebaseProvider;