@suluk/builder - v0.1.11
    Preparing search index...

    Interface MarketingSpec

    interface MarketingSpec {
        hero: {
            titleKey: string;
            subtitleKey?: string;
            ctaKey: string;
            ctaHref: string;
        };
        features?: { featureKeys: string[] };
        pricing?: { plans: PlanSpec[]; currency?: string };
        testimonials?: { source?: ProjectionSource };
        faq?: { source?: ProjectionSource };
        cta?: {
            titleKey: string;
            buttonKey: string;
            buttonHref: string;
            newsletter?: boolean;
        };
        footer?: { builtWith?: string[]; newsletterLabelKey?: string };
        order?: string[];
    }
    Index

    Properties

    hero: {
        titleKey: string;
        subtitleKey?: string;
        ctaKey: string;
        ctaHref: string;
    }
    features?: { featureKeys: string[] }
    pricing?: { plans: PlanSpec[]; currency?: string }
    testimonials?: { source?: ProjectionSource }

    present (even {}) ⇒ include the testimonials section; default source = approved Reviews.

    faq?: { source?: ProjectionSource }

    present (even {}) ⇒ include the FAQ section; default source = active Faqs, ordered.

    cta?: {
        titleKey: string;
        buttonKey: string;
        buttonHref: string;
        newsletter?: boolean;
    }
    footer?: { builtWith?: string[]; newsletterLabelKey?: string }
    order?: string[]

    explicit section order; default = every configured section, canonical order.