// direction-a-trade-intel.jsx — "Why we're different" chapter. // Contrasts Werkd's AI-first architecture (a dozen+ specialized systems woven // into every core workflow) against the industry-standard pattern of AI as a // single bolted-on chatbot/receptionist add-on. Competitors kept generic per // spec. Dark section, id="assist" to match nav. Loads after direction-a.jsx // (uses DA, Reveal, ADot, Icon, Counter, useIsMobile). // Pricing — single source of truth lives in pricing-constants.js. const _P = window.WERKD_PRICING || { owner: 99 }; const TI_CONTRAST = { addon: { label: 'THE INDUSTRY PATTERN', sub: 'AI bolted onto the same manual workflow', items: [ 'Real AI, where it exists, costs extra — priced as an add-on on top of your subscription', 'Explains the software back to you — a tour guide, not a worker', 'Lives in one corner of the app: reception, or a help widget', 'Everything else — quoting, invoicing, books — still manual', ], }, werkd: { label: 'werk d. · BUILT IN', sub: 'AI woven into the actual work', items: [ `12 AI systems, all included at $${_P.owner}/mo`, 'Reads the job site and drafts the real number', 'Runs quietly across quoting, invoicing, follow-ups, and books', 'Quotes and diagnoses are drafts — yours to approve, edit, or skip', ], }, }; const TI_CAPS = [ ['camera', 'Photo Diagnosis', 'Snap the unit or the leak — vision AI drafts a diagnosis and a priced quote, parts and labor included, before you’re back in the truck.'], ['mic', 'Composer', 'Say it, type it, or snap a photo. It becomes a scheduled job, a quote, or a logged expense.'], ['moon', 'Day Close', 'Every evening, AI drafts invoices for jobs you finished, flags what’s gone overdue, and preps tomorrow.'], ['send', 'Payment Chaser', 'Watches every invoice and sends the right reminder on schedule — tone tuned to how overdue it is and how that customer usually pays.'], ['inbox', 'The Desk', 'Every morning, AI preps the day’s decisions — reminders drafted, invoices ready to send, follow-ups written. You approve, adjust, or skip. Each card shows its receipt.'], ['book-open', 'Price Book that learns', 'Every receipt you snap teaches werkd your real costs — future quotes pull them automatically, no lookup.'], ['route', 'Route & Dispatch Check', 'Keeps the day’s drive times tight, and double-checks any reorder against real customer time windows before it’s applied.'], ['calendar-clock', 'Seasonal & win-back nudges', 'Surfaces the maintenance visit or the lapsed customer worth a call, right on schedule — not buried in a list.'], ['clipboard-list', 'Job Prep', 'Before you arrive, it briefs you on the customer’s history, flags any balance owed, and pulls gate codes or access notes from old jobs.'], ['tag', 'Cross-Sell Engine', 'Notices what similar customers usually need next and suggests the add-on while you’re already quoting the job.'], ['dollar-sign', 'The Money Brief', 'One line at the top of your money tab: the single most money-relevant loose end today — overdue, unbilled, or going cold — with the action attached. Chase it in two taps.'], ['star', 'Review Request', 'Scores each finished job for the best moment to ask, then drafts a personal review request timed to how that customer engages.'], ]; function ATradeIntelligence() { const DA = window.DA; const m = window.useIsMobile(); return (
); } window.ATradeIntelligence = ATradeIntelligence;