A clean, responsive Single Page Application displaying all unused Wordle words in an alphabetized, searchable format.
- 📱 Responsive Design - 3 columns on desktop, 2 on tablet, 1 on mobile
- 🔍 Real-time Search - Filter words instantly
- 📊 Word Statistics - Count display and organization by letter
- 💰 Ad-Ready - Sidebar spaces for monetization
- ⚡ Fast Performance - Built with Bun and React
# Install dependencies
bun install
# Build the application
bun run build
# Start development server
bun dev
# Production server
bun startVisit http://localhost:3000 to view the application.
├── src/
│ ├── components/ # React components
│ ├── data/ # Word data and utilities
│ ├── styles/ # CSS styles
│ └── index.js # App entry point
├── public/
│ ├── index.html # HTML template
│ └── [build files] # Generated bundles (ignored by git)
├── build.js # Build configuration
└── server.js # Development server
- Word Data: Update
src/data/words.jswith complete word list - Ads: Replace placeholder content in
src/components/AdSpace.js - Styling: Modify
src/styles/global.cssfor visual changes
- Runtime: Bun
- Frontend: React 18
- Bundling: Bun build
- Styling: CSS with responsive design
- Server: Bun native server