headless-commerce
    Preparing search index...

    Interface Product

    Static product model for the headless catalog.

    Product content is intentionally local to keep the portfolio deployable on GitHub Pages without a commerce backend, server runtime, or private keys.

    interface Product {
        category: ProductCategory;
        compareAtPriceCents?: number;
        description: string;
        featuredRank: number;
        features: readonly string[];
        gallery: readonly string[];
        imagePath: string;
        name: string;
        priceCents: number;
        rating: number;
        reviewCount: number;
        slug: string;
        tagline: string;
    }
    Index

    Properties

    category: ProductCategory
    compareAtPriceCents?: number
    description: string
    featuredRank: number
    features: readonly string[]
    gallery: readonly string[]
    imagePath: string
    name: string
    priceCents: number
    rating: number
    reviewCount: number
    slug: string
    tagline: string