ChemPare Documentation - v0.0.0
    Preparing search index...

    Interface StorePage

    Represents a page in the Shopify store. Pages are static content like About Us, Contact, Terms of Service, etc.

    const page: StorePage = {
    page_id: "about-us",
    title: "About Our Company",
    link: "/pages/about-us",
    image_link: "/images/about-banner.jpg",
    description: "Learn about our history and mission"
    };
    interface StorePage {
        page_id: string;
        title: string;
        link: string;
        image_link: string;
        description: string;
    }
    Index

    Properties

    page_id: string

    Unique identifier for the page. Used in URLs and internal references.

    title: string

    Display title of the page. Used in navigation and page header.

    link: string

    URL path to the page. Can be relative to the store's base URL.

    image_link: string

    URL to the page's featured image. Used in page headers and navigation.

    description: string

    Detailed description or content summary of the page. Used for SEO and page previews.