Numbers show what's remaining in your plan · Balance auto-resets on the 1st of each month
📅 Your Content This Month
Team Dashboard
Sristi Solar Power · March 2026
Local
⚙️ Settings
Settings are saved locally on this device. Add Firebase credentials to sync across devices.
📱 WhatsApp Notifications
Step 1: Send I allow callmebot to send me messages
to +34 644 99 27 97 on WhatsApp → you'll get your API key
🌐 Portal Settings
This is the URL you'll share with clients as their portal link, e.g. studio.creatormonk.com#sristi
🔗 Per-Client Quick Links
Gmail (used for Zoho Social login), Google Drive folder, and Zoho Social workspace per client.
Connect Firebase (Auth + Firestore) to enable Phone OTP login for clients and sync all data across devices. Get config from Firebase Console ↗ → Project Settings → Your Apps → Web App → Config snippet.
⬜ Not connected
0
Total This Month
0
Awaiting Approval
0
Client Approved
0
Scheduled & Live
👥 Team Responsibilities
📈
Rohan
Co-Founder · Marketing & Ops
Client strategy & planningMarketing
Content pipeline approveOps
Client portal manageOps
Social media executionMarketing
⚡
Vishal
Co-Founder · Tech, AI & Automation
Website developmentTech
AI tools & automationAI
Portal & system updatesTech
🔧 Current project: —WIP
🎨
Kundan
Co-Founder · Ops & Creative
Reels & content designCreative
Captions & hashtagsCreative
Client onboarding & feedbackOps
Rejected posts fixOps
📦 Monthly Plan Management
📋 Content Pipeline
Brand Onboarding Portal
Everything we need to kick off your content — collected once, used every month. This process ensures we know your brand completely before creating a single post, so every piece of content feels authentically yours.
✓
2
3
Step 2 of 3 — 66%
Platform access in progress
✓ Complete
Step 01
📋
Brand Discovery
Goals, audience, tone of voice, brand personality, and content direction all locked in.
● In Progress
Step 02
🔗
Platform Access
Connecting social accounts, agreeing credentials, and setting up your monthly content calendar.
Upcoming
Step 03
🚀
Content Kickoff
First batch of content goes live. Your portal activates and the monthly approval cycle begins.
🏢
Brand Information
🏢
📁 Click to upload logo (PNG, JPG, SVG)
📱
Active Platforms
Instagram
Facebook
YouTube
LinkedIn
📦
Monthly Plan & Deliverables
👆 Select platforms above to configure monthly deliverables
💡 Enter 0 or leave blank if a content type is not included in the deal
Add New Content
Edit Client Plan
Done!
User Management
Assign portal access to team members and clients
How roles work:team → full dashboard
→ client sees only their portal
Click Refresh to load users →
⚠ Required Firestore Rules — paste this in Firebase Console → Firestore → Rules: rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
// App data — any authenticated user
match /creatormonk/data {
allow read, write: if request.auth != null;
}
// User roles — each user reads/writes their own doc
match /users/{userId} {
allow read, write: if request.auth != null && request.auth.uid == userId;
}
// Team can read all user docs (for User Management panel)
match /users/{userId} {
allow read, write: if request.auth != null;
}
}
}