astro-components

Installation
SKILL.md

Astro Components Rules

Props Definition

If a component has props, define a Props type and destructure from Astro.props:

type Props = {
  title: string;
};

const { title } = Astro.props;

Use types from the CMS wherever possible:

import type { Image } from "cms/src/payload-types";
Installs
2
GitHub Stars
22
First Seen
Mar 1, 2026
astro-components — jhb-software/payload-astro-website-template