front-end-skill
π―Skillfrom 0xgeorgemathew/splithub
front-end-skill skill from 0xgeorgemathew/splithub
Installation
npx skills add https://github.com/0xgeorgemathew/splithub --skill front-end-skillSkill Details
Brief description of what this Skill does and when to use it (project)
Overview
# Next.js Frontend Development
When to Use This Skill
Activate this skill when working on frontend tasks in packages/nextjs/:
- Creating or modifying React components
- Styling with Tailwind CSS
- Building new pages or layouts
- Implementing animations and interactions
- Working with UI/UX improvements
Project Context
SplitHub is a tap-to-pay bill splitting app. The frontend should feel:
- Instant & Responsive β NFC tap interactions need snappy feedback
- Trustworthy β Financial app requires clean, confident design
- Effortless β Hide complexity, make payments feel magical
Aesthetic Guidelines
Avoid "AI Slop"
Generic AI-generated designs are immediately recognizable. Avoid:
- Overused fonts: Inter, Roboto, Open Sans, Lato, system fonts
- ClichΓ© color schemes: purple gradients on white backgrounds
- Predictable layouts and cookie-cutter component patterns
- Space Grotesk (overused in AI outputs)
Make creative, distinctive choices that surprise and delight.
Typography
Typography signals quality instantly. Use distinctive fonts from Google Fonts.
Good choices:
- Code aesthetic: JetBrains Mono, Fira Code
- Editorial: Playfair Display, Crimson Pro
- Technical: IBM Plex family, Source Sans 3
- Distinctive: Bricolage Grotesque, Newsreader, Syne, Outfit, Archivo
Pairing principles:
- High contrast = interesting (display + monospace, serif + geometric sans)
- Use weight extremes: 100/200 vs 800/900, not 400 vs 600
- Size jumps of 3x+, not 1.5x
Load fonts via next/font/google in layout files.
Color & Theme
- Commit to a cohesive aesthetic with CSS variables
- Dominant colors with sharp accents > timid, evenly-distributed palettes
- Draw inspiration from IDE themes, cultural aesthetics, or unexpected sources
- Dark themes work well for financial/tech apps
Motion & Animation
- Use
framer-motion(available asmotionin this project) for React animations - Focus on high-impact moments: orchestrated page loads with staggered reveals
- One well-designed animation-delay sequence > scattered micro-interactions
- CSS transitions for simple hover/focus states
- Provide tactile feedback for NFC tap interactions
Backgrounds & Depth
Create atmosphere rather than defaulting to solid colors:
- Layer CSS gradients
- Subtle geometric patterns
- Contextual effects matching the aesthetic
- Use opacity and blur for depth
Technical Stack
- Framework: Next.js 15 with App Router
- Styling: Tailwind CSS
- Animation: Framer Motion (
motion) - Fonts:
next/font/google - Path alias:
~~/*resolves topackages/nextjs/
Component Locations
```
packages/nextjs/
βββ app/ # Pages (App Router)
βββ components/
β βββ settle/ # Payment flow UI
β βββ credits/ # POS terminal UI
β βββ activity/ # Activity/receipt UI
β βββ expense/ # Expense forms
β βββ home/ # Dashboard components
β βββ scaffold-eth/ # Wallet components
βββ hooks/ # Custom React hooks
βββ services/ # API/data services
```
Implementation Checklist
When creating frontend components:
- [ ] Check existing components in
packages/nextjs/components/for patterns - [ ] Use distinctive typography (never Inter/Roboto)
- [ ] Apply consistent color theme via CSS variables or Tailwind config
- [ ] Add purposeful animations for key interactions
- [ ] Ensure mobile-first responsive design
- [ ] Provide loading/error states with visual feedback
- [ ] Test NFC-related flows feel instant and satisfying