export interface LoopStep { n: number; phase: string; title: string; body: string; footer: string; lead?: boolean; } export const LOOP_STEPS: LoopStep[] = [ { n: 1, phase: 'Define', title: 'Your Company ID', body: 'The niche you want to win: what you sell, who your ideal customer is, where you operate, what makes you different, and which products bring the most profit. Tell Recomaze once.', footer: 'Optimized for profit, not just traffic', lead: true, }, { n: 2, phase: 'Propagate', title: 'One story, everywhere', body: 'Recomaze turns it into content for your website and your social profiles, so AI engines and shoppers everywhere get one consistent story about you.', footer: 'Content that builds your niche', }, { n: 3, phase: 'Attract', title: 'More relevant AI traffic', body: 'ChatGPT and Gemini finally have the right story to recommend you. And when you appear in their answers, you appear right: your niche, your words, your products.', footer: 'Visitors arrive looking for what you sell', }, { n: 4, phase: 'Convert', title: 'Your AI Sales Agent', body: 'Greets every visitor 24/7, answers from your Company ID, recommends, and guides them to checkout. Bigger baskets, more orders.', footer: 'Sells while you sleep', }, { n: 5, phase: 'Improve', title: 'See the gaps, fix them', body: "Recomaze watches where AI skips you, where your catalog confuses it, and what real visitors ask that your store can't answer yet. Every gap becomes new content, and the loop restarts stronger.", footer: 'Every week, harder to skip', }, ]; export const SETUP_CALL_URL = 'https://calendly.com/better-zty/meeting-with-recomaze'; export const PARTNER_SETUP_LINK = 'https://custom.recomaze.ai'; export const DEFAULT_INVITE_MESSAGE = `Hi, We just signed up for Recomaze and I'd like you to run it for us. It's the AI sales infrastructure for our store: we define our niche once (our Company ID), and Recomaze uses it to create our content, track how ChatGPT and Gemini present us, and run an AI sales agent that helps visitors buy — you control what's fixed and what runs on autopilot. If you handle the setup, we get 10,000 extra trial credits. Recomaze also has a partner program for agencies and experts (free account + commissions). Can you take a look this week? Setup link: ${PARTNER_SETUP_LINK}`; export const AGENCY_CREDITS = 10000; function prettifyDomain(domain?: string | null): string { if (!domain) return ''; const host = domain .trim() .replace(/^https?:\/\//i, '') .replace(/^www\./i, '') .split('/')[0]; const label = host.split('.')[0] ?? ''; if (!label) return ''; return label.charAt(0).toUpperCase() + label.slice(1); } export function resolveBrandName( shopName?: string | null, domain?: string | null ): string { const name = shopName?.trim(); if (name) return name; return prettifyDomain(domain) || 'your store'; }