AboutSupportDeveloper GuideVersion 22.3.18
interface StorefrontLandingPage {
    bottomRow: {
        items: StorefrontLandingPageBottomRow;
        title: string;
    };
    hero?: {
        cta: StorefrontNavigationItem;
        description: string;
        image: Image;
        title: string;
    };
    middleRow: {
        apps: StorefrontLandingPageMiddleRow;
        title: string;
    };
    topRow: {
        items: StorefrontLandingPageTopRow;
        title: string;
    };
}

Properties

bottomRow: {
    items: StorefrontLandingPageBottomRow;
    title: string;
}
hero?: {
    cta: StorefrontNavigationItem;
    description: string;
    image: Image;
    title: string;
}
middleRow: {
    apps: StorefrontLandingPageMiddleRow;
    title: string;
}
topRow: {
    items: StorefrontLandingPageTopRow;
    title: string;
}