Frontend

Frontend coding conventions using Preact and Tailwind. Use when writing or reviewing frontend JavaScript, HTML, or CSS code for web UI components.

majiayu000 Updated 567 repo stars

File contents

  • Use Preact unless otherwise specified
  • Use Tailwind unless otherwise specified

Framework Selection

Framework When to Use
Next.js + shadcn/ui workers/ directory (Cloudflare Workers)
Preact + Tailwind cluster/applications/ static frontends

Preact

  • Create elements with h function instead of JSX/TSX syntax

Accessibility

Framework Approach
shadcn/ui Built-in accessibility via Radix UI primitives
Preact + Tailwind Manual implementation required

Manual Accessibility Implementation

When not using shadcn/ui, ensure accessibility compliance:

Element Required
<select> Associate with <label> using for/id, use class: "sr-only" if visual label not needed
<input> Associate with <label> or use aria-label attribute
<table> headers Use <th scope="col"> or <th scope="row">

Example (Preact):

h("div", {class: "flex flex-col"}, [
    h("label", {for: "search-box", class: "sr-only"}, "Search"),
    h("select", {id: "search-box", ...}, [...]),
])

majiayu000/claude-skill-registry-data/tree/main/development/frontend-hippocampus-dev-hippocampus-2 commit 382cfb5204

Frequently asked questions

npx skillmds@latest add majiayu000/frontend-11