Preparing For Your Consultation

Things To Know

  • In preparation for your consultation, complete steps 1-4 of Things To Do
  • Prepare your questions prior to the consultation.
  • You will discuss your business problems and be informed of our solutions to them in detail.
  • You will have two weeks to complete your contractual agreement and make your retainer payment from the date of your consultation.

Things To Do

  • Step 1: Read Through Your Package & Proposal
  • Step 2: Read Through and Sign Your Contract
  • Step 3: Complete Your Assessment & Deposit
  • Step 4: Schedule Your First Client Meeting
We look forward to hearing from you and working with you soon.
COMPREHENSIVE SERVICES

We equip leaders from strategy through execution

Startup Consulting Program

Contract
Proposal
NDA

You must complete a separate contract and payment per company.

Deposit
Subsricption
Schedule Your First Meeting

Small Business Consulting

Contract
Proposal
NDA

You must complete a separate contract and payment per company.

Deposit
Subscription
Schedule Your First Meeting

Medium Size Consulting

Contract
Proposal
NDA

You must complete a separate contract and payment per company.

Deposit
Subscription
Schedule Your First Meeting

Enterprise Business Consulting

Contract
Proposal
NDA

You must complete a separate contract and payment per company.

Deposit
Subscription
Schedule Your First Meeting

Not Quite Ready for Long Term Commitment or Training?
Need a One Time Business Project Completed?
We Do Those Too!

Complete this contract, NDA, proposal, payment and client call for operations, marketing, advertising, sales, public relations, customer relations, human resources, financial management, business development, technology and hybrid model systems.

Things To Do

  • Step 1: Review Our Optional Services
  • Step 2: Pay For Your Selected Optional Services Needed
  • Step 3: Complete Your Company Contract
  • Step 4: Schedule Your First Meeting To Get Started

Sister Services

Complete this contract, NDA, proposal, payment and client call for Urban Franchising, Minority Business Capital, Black & Brown Brokerage and Off By 5 services.

Strategy Sessions
Learn About Our Sister Companies

Have You Experienced What Our Sister Companies Have to Offer Your Business?

Learn More
 Marie-Management Marie-ManagementStrategy Sessions Marie-Management
// Import the necessary Firebase modules import { initializeApp } from "firebase/app"; import { getFirestore, collection, addDoc, serverTimestamp } from "firebase/firestore"; // Your Firebase configuration const firebaseConfig = { apiKey: "AIzaSyBQH8AyjLWh8EWs25PMYxHawMlpTTUzH38", authDomain: "business-database-56495.firebaseapp.com", projectId: "business-database-56495", storageBucket: "business-database-56495.firebasestorage.app", messagingSenderId: "345364293002", appId: "1:345364293002:web:30e85d1722c6b487809473", measurementId: "G-15S88CF8P8" }; // Initialize Firebase const app = initializeApp(firebaseConfig); const db = getFirestore(app); // Wait for the DOM to load document.addEventListener('DOMContentLoaded', function () { const form = document.querySelector('#customForm'); // Make sure this matches your form's ID in Webflow form.addEventListener('submit', async function (event) { event.preventDefault(); // Prevent default Webflow submission // Retrieve form data const formData = new FormData(form); const income = formData.get('incomeInput'); // Match input field 'name' attributes const revenue = formData.get('revenueInput'); const investments = formData.get('investmentsInput'); const unitsSold = formData.get('unitsSoldInput'); const numClients = formData.get('numClientsInput'); const industry = formData.get('industryInput'); // Save data to Firebase Firestore try { const docRef = await addDoc(collection(db, 'BusinessData'), { income: parseFloat(income), revenue: parseFloat(revenue), investments: parseFloat(investments), unitsSold: parseInt(unitsSold), numberOfClients: parseInt(numClients), industry: industry, createdAt: serverTimestamp(), }); alert('Data saved successfully! Document ID: ' + docRef.id); form.reset(); // Reset form after successful submission } catch (error) { console.error('Error adding document: ', error); alert('Failed to save data. Please try again.'); } }); });