diff --git a/README.md b/README.md index 69b2ab02..4e8ae12e 100644 --- a/README.md +++ b/README.md @@ -136,6 +136,22 @@ To run this project locally, you'll need your own Firebase project: 5. **Open your browser:** Navigate to [http://localhost:3000](http://localhost:3000) to see the application running. +### 🚀 Firebase Hosting Deployment + +To deploy the production-ready site directly to Firebase Hosting: + +1. **Build the production static export**: + This compiles the Next.js App Router files into highly optimized static assets inside the `out/` directory: + ```bash + npm run build + ``` + +2. **Deploy to Firebase**: + Deploy the build files along with custom Firestore indexes and rules to the live platform: + ```bash + npx firebase deploy + ``` + ## 📜 Scripts - `npm run dev`: Starts the development server. diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d7d504ae..d24e3fd6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -93,6 +93,13 @@ export default function RootLayout({ }>) { return ( + +