import React, { ReactNode } from 'react'; import { GRADIENT, MONO, SANS } from '../signup-mirror/theme'; const OUTLINE_BTN = `w-full px-[14px] py-3 rounded-[10px] bg-[#f6f6f7] border border-[#e1e3e5] text-[#202223] ${SANS} text-[13.5px] font-semibold cursor-pointer transition-colors hover:enabled:border-[#c9cccf] hover:enabled:bg-[#eef0f1] disabled:text-[#8c9196] disabled:cursor-not-allowed`; const GRADIENT_BTN = `w-full px-[14px] py-3 rounded-[10px] border-none cursor-pointer ${GRADIENT} text-white ${SANS} text-[13.5px] font-semibold shadow-[0_4px_16px_rgba(200,23,93,0.2)] transition hover:brightness-110 hover:-translate-y-px`; function PathCard({ eyebrow, title, children, note, actions, }: { eyebrow: string; title: string; children: ReactNode; note?: string; actions: ReactNode; }): JSX.Element { return (
{eyebrow}

{title}

{children}

{note && (

{note}

)}
{actions}
); } export function SetupPaths({ bookingEnabled, onRunYourself, onOpenCopilot, onBookSetup, onInvite, onAgency, }: { bookingEnabled: boolean; onRunYourself: () => void; onOpenCopilot: () => void; onBookSetup: () => void; onInvite: () => void; onAgency: () => void; }): JSX.Element { return (
Start with your Company ID → } > Full control over every detail, down to the smallest setting. Recomaze Copilot guides you through the process whenever you need help or have a question. Open Copilot → } > Copilot interviews you, drafts your Company ID, and proposes the setup. You approve it once, and it operates: scanning for gaps, writing the content, publishing what you've cleared for autopilot, and asking you when a decision is yours to make. Book your setup hour → } > Book a call and we'll do the full setup together with you, in one hour. } > Already work with an agency, or an expert who runs your marketing? Invite them to run the setup for you.{' '} You get 10,000 extra credits during your trial {' '} when they take care of it.
); }