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

@orion-studios/payload-blocks

v0.1.2

Published

Reusable Payload CMS block definitions and admin components

Readme

@orion-studios/payload-blocks

Reusable Payload CMS block definitions and admin components for building content-rich websites.

Installation

npm install @orion-studios/payload-blocks

Features

  • 9 Production-Ready Blocks: Hero, RichText, Media, FeatureGrid, Testimonials, FAQ, CTA, FormEmbed, BookingEmbed
  • Admin UI Components: Custom block labels and controls
  • Section Presets: Pre-configured block combinations for common page sections
  • Template Starters: Complete page layouts for contact, landing, services pages
  • TypeScript Support: Full type definitions included

Usage

Quick Start

// src/collections/Pages.ts
import { CollectionConfig } from 'payload'
import { defaultPageLayoutBlocks } from '@orion-studios/payload-blocks'

export const Pages: CollectionConfig = {
  slug: 'pages',
  fields: [
    {
      name: 'title',
      type: 'text',
      required: true,
    },
    {
      name: 'layout',
      type: 'blocks',
      blocks: defaultPageLayoutBlocks, // All 9 blocks ready to use
    },
  ],
}

Using Individual Blocks

import {
  HeroBlock,
  CtaBlock,
  FaqBlock,
} from '@orion-studios/payload-blocks'

export const Pages: CollectionConfig = {
  slug: 'pages',
  fields: [
    {
      name: 'layout',
      type: 'blocks',
      blocks: [HeroBlock, CtaBlock, FaqBlock], // Pick only what you need
    },
  ],
}

Using Presets

import {
  sectionPresets,
  templateStarterPresets,
  clonePresetBlocks,
} from '@orion-studios/payload-blocks'

// Section presets for common patterns
console.log(sectionPresets)
// [
//   { id: 'hero-conversion', title: 'Hero + Conversion CTA', blocks: [...] },
//   { id: 'services-grid', title: 'Services Grid', blocks: [...] },
//   { id: 'social-proof', title: 'Testimonials + FAQ', blocks: [...] },
//   { id: 'lead-capture', title: 'Lead Capture', blocks: [...] }
// ]

// Template starters for entire pages
console.log(Object.keys(templateStarterPresets))
// ['contact', 'landing', 'services', 'standard']

// Clone preset blocks for customization
const myBlocks = clonePresetBlocks(templateStarterPresets.landing)

Available Blocks

1. Hero Block

Large hero section with headline, subheadline, CTA buttons, and optional background image.

2. Rich Text Block

Full-featured rich text editor powered by Lexical.

3. Media Block

Image/video display with caption support.

4. Feature Grid Block

Grid layout for showcasing features, services, or benefits. Supports two variants: cards and highlights.

5. Testimonials Block

Customer testimonials with quotes, names, and locations.

6. FAQ Block

Frequently asked questions in an accordion format.

7. CTA Block

Call-to-action section with headline, description, and button.

8. Form Embed Block

Embed form components (customize for your needs).

9. Booking Embed Block

Embed booking/scheduling components.

Admin Components

The package includes custom admin UI components that enhance the Payload admin experience:

import { BuilderBlockLabel } from '@orion-studios/payload-blocks'

// Used automatically with defaultPageLayoutBlocks
// Provides better visual labels for blocks in the admin panel

License

MIT © Orion Studios