A modern React application for managing and showcasing your guitar pedal collection.
- Modern UI: Built with React 18, TypeScript, and Tailwind CSS
- Responsive Design: Works perfectly on desktop and mobile
- Dynamic Routing: Each pedal gets its own URL (e.g.,
/boss-blues-driver-bd-2) - Interactive Search: Add pedals via command line with search functionality
- Auto-deployment: GitHub Actions workflow for continuous deployment to Vercel
-
Install dependencies
npm install
-
Start development server
npm run dev
-
Add your first pedal
npm run add-pedal
stompboard/
├── src/
│ ├── components/ # React components
│ ├── pages/ # Page components
│ ├── types/ # TypeScript interfaces
│ └── utils/ # Utility functions
├── pedals/ # JSON files for each pedal
├── scripts/ # CLI tools
└── .github/workflows/ # CI/CD configuration
Use the interactive CLI to search and add pedals:
npm run add-pedalThis will:
- Search for pedals by name, manufacturer, or type
- Let you select from search results
- Prompt for additional details (power, controls, etc.)
- Create a JSON file in the
pedals/directory - Generate a URL-friendly slug for routing
Each pedal is stored as a JSON file with this structure:
{
"name": "Blues Driver BD-2",
"manufacturer": "Boss",
"type": "overdrive",
"milliAmps": 20,
"voltage": 9,
"imageUrl": "https://example.com/image.jpg",
"price": 79.99,
"description": "Classic blues overdrive...",
"controls": ["Level", "Tone", "Gain"],
"dimensions": "2.87\" x 5.13\" x 2.38\"",
"weight": "0.9 lbs",
"bypass": "True Bypass",
"year": 1995,
"slug": "boss-blues-driver-bd-2"
}The project includes a GitHub Actions workflow that automatically deploys to Vercel on every push to the main branch.
- Create a Vercel account and connect your GitHub repository
- Add these secrets to your GitHub repository:
VERCEL_TOKEN: Your Vercel API tokenVERCEL_ORG_ID: Your Vercel organization IDVERCEL_PROJECT_ID: Your Vercel project ID
- Frontend: React 18 + TypeScript
- Styling: Tailwind CSS + Headless UI
- Routing: React Router v6
- Build Tool: Vite
- Icons: Heroicons
- Deployment: Vercel
- CI/CD: GitHub Actions
npm run dev- Start development servernpm run build- Build for productionnpm run preview- Preview production buildnpm run lint- Run ESLintnpm run add-pedal- Interactive pedal search and add
The app uses a modern design system with:
- Responsive grid layouts
- Hover effects and transitions
- Color-coded pedal types
- Loading states and error handling
- Mobile-first responsive design
The project uses modern React patterns:
- Functional components with hooks
- TypeScript for type safety
- Suspense for code splitting
- Modern CSS with Tailwind utilities
This project is licensed under the MIT License - see the LICENSE file for details.