npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

stackables-components

v1.0.2

Published

Reusable React components for Contentstack projects

Readme

Stackables Components

A collection of reusable React components designed for use with Contentstack projects. These components are built with Tailwind CSS and designed to work seamlessly with Contentstack's content modeling capabilities.

Installation

npm install stackables-components

Quick Start

import { HeroBanner, ProductCard } from '@contentstack-solutions/stackables-components';

// Import the required styles
import '@contentstack-solutions/stackables-components/styles/globals.css';

function MyPage() {
  return (
    <div>
      <HeroBanner 
        heading="Welcome to Our Site"
        subheading="Discover amazing products"
        cta_button={{ text: "Get Started", link: "/products" }}
      />
      <ProductCard 
        product_name="Amazing Product"
        description="This product will change your life"
        price={99.99}
      />
    </div>
  );
}

Available Components

Hero Banners

  • HeroBanner: Full-width gradient hero with CTA button
  • SplitHeroBanner: Split layout hero with content and image placeholder

Carousels

  • ImageCarousel: Interactive image carousel with navigation

Product Components

  • ProductCard: Individual product display card
  • ProductGrid: Grid layout for multiple products

Cards

  • FeatureCard: Feature highlight card with icon

Forms

  • ContactForm: Customizable contact form

Navigation

  • NavigationBar: Responsive navigation with mobile menu

Footers

  • FooterMultiColumn: Multi-column footer with links

Container Width System

Components use a flexible container width system. You can control the maximum width using CSS custom properties:

/* Set global container width */
.component-container {
  --container-width: 1200px;
}

/* Or use preset classes */
<div className="container-1440">
  <HeroBanner />
</div>

Available preset classes:

  • container-768 (768px)
  • container-1024 (1024px)
  • container-1280 (1280px)
  • container-1440 (1440px - default)
  • container-1600 (1600px)
  • container-1920 (1920px)

Styling

This library requires Tailwind CSS. Make sure your project has Tailwind CSS configured. The components use utility classes and should integrate seamlessly with your existing Tailwind setup.

TypeScript Support

Full TypeScript definitions are included. Import types for better development experience:

import { HeroBannerProps, ProductCardProps } from '@contentstack-solutions/stackables-components';

const myHeroProps: HeroBannerProps = {
  heading: "Welcome",
  subheading: "Get started today"
};

Contributing

This is a Contentstack Solutions project. For contributions or issues, please contact the Contentstack Solutions team.

License

MIT