- Build complete Next.js CRM for commercial real estate - Add authentication with JWT sessions and role-based access - Add GoHighLevel API integration for contacts, conversations, opportunities - Add AI-powered Control Center with tool calling - Add Setup page with onboarding checklist (/setup) - Add sidebar navigation with Setup menu item - Fix type errors in onboarding API, GHL services, and control center tools - Add Prisma schema with SQLite for local development - Add UI components with clay morphism design system Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
69 lines
1.9 KiB
TypeScript
69 lines
1.9 KiB
TypeScript
export interface DFYProduct {
|
|
id: string;
|
|
name: string;
|
|
description: string;
|
|
priceInCents: number;
|
|
features: string[];
|
|
deliveryDays: number;
|
|
}
|
|
|
|
export const DFY_PRODUCTS: Record<string, DFYProduct> = {
|
|
SMS_SETUP: {
|
|
id: 'dfy_sms_setup',
|
|
name: 'SMS Setup (Done-For-You)',
|
|
description: 'Complete SMS configuration with A2P registration, templates, and automation setup',
|
|
priceInCents: 29900, // $299
|
|
features: [
|
|
'A2P 10DLC registration',
|
|
'Custom SMS templates',
|
|
'Auto-response workflows',
|
|
'Compliance review',
|
|
],
|
|
deliveryDays: 3,
|
|
},
|
|
EMAIL_SETUP: {
|
|
id: 'dfy_email_setup',
|
|
name: 'Email Setup (Done-For-You)',
|
|
description: 'Professional email configuration with templates and sequences',
|
|
priceInCents: 19900, // $199
|
|
features: [
|
|
'Domain authentication (SPF/DKIM)',
|
|
'Custom email templates',
|
|
'Drip campaign setup',
|
|
'Deliverability optimization',
|
|
],
|
|
deliveryDays: 2,
|
|
},
|
|
CAMPAIGN_SETUP: {
|
|
id: 'dfy_campaign_setup',
|
|
name: 'Campaign Setup (Done-For-You)',
|
|
description: 'Full follow-up campaign creation with multi-channel sequences',
|
|
priceInCents: 49900, // $499
|
|
features: [
|
|
'Custom campaign strategy',
|
|
'Multi-touch sequences',
|
|
'SMS + Email integration',
|
|
'Lead scoring setup',
|
|
],
|
|
deliveryDays: 5,
|
|
},
|
|
FULL_ONBOARDING: {
|
|
id: 'dfy_full_onboarding',
|
|
name: 'Complete Onboarding Package',
|
|
description: 'Everything you need to get started - SMS, Email, and Campaign setup',
|
|
priceInCents: 79900, // $799 (bundle discount)
|
|
features: [
|
|
'All SMS Setup features',
|
|
'All Email Setup features',
|
|
'All Campaign Setup features',
|
|
'1-on-1 strategy call',
|
|
'Priority support for 30 days',
|
|
],
|
|
deliveryDays: 7,
|
|
},
|
|
};
|
|
|
|
export function getDFYProduct(productId: string): DFYProduct | undefined {
|
|
return DFY_PRODUCTS[productId];
|
|
}
|