Chords & Lyrics is a small web app designed to provide easy access to chords and lyrics for my favorite songs. It features an automatic scrolling functionality, making it convenient to follow along while playing or singing.
- Automatic Scrolling: Automatically scrolls through the lyrics at a customizable speed.
- Day/Night Mode: Switch between day and night modes for better visibility depending on the lighting conditions.
- Song List: A start page that lists all available songs with links to their individual pages.
- Home Button: Easily navigate back to the home page from any song page.
To get started with the project, follow these steps:
-
Clone the repository:
git clone https://github.com/luisrieke/chords-and-lyrics-pwa.git cd chords-and-lyrics
-
Install dependencies:
npm install
-
Run the app:
npm start
-
Build the app for production:
npm run build
Here's an overview of the project structure:
chords-and-lyrics/
├── public/
│ ├── index.html
│ └── ...
├── src/
│ ├── songs/
│ │ ├── Overkill.js
│ │ └── Wonderwall.js
│ ├── App.js
│ ├── index.js
│ ├── styles.css
│ └── ...
├── package.json
└── README.md
- Home: The main landing page that lists all available songs.
- SongLayout: A layout component for song pages that includes mode switching and scroll controls.