mirror of
https://github.com/duthaho/claudekit.git
synced 2026-06-11 04:34:56 +03:00
503 B
503 B
paths
| paths | ||||
|---|---|---|---|---|
|
Frontend Rules
- One component per file, named with PascalCase
- Use Server Components by default in Next.js — add
'use client'only when needed - Tailwind utility classes for styling — avoid inline styles
- All interactive elements must be keyboard accessible
- Include
aria-labelon icon-only buttons - Use semantic HTML (
<nav>,<main>,<section>) over generic<div> - Images require
alttext