component-naming
Installation
SKILL.md
Component Naming Conventions
Use this guide when creating or modifying React components to ensure consistent naming across the portfolio.
Naming Rules
1. PascalCase for Components
All React components use PascalCase:
// ✅ Good
export const FeaturedPost = () => {};
export const TagFilter = () => {};