This project aims to create a simple online menu interface and integrate a menu link into a QR code generated with Python. The project uses SCSS for the frontend design of the menu interface and Python for QR code integration.
- Responsive menu interface using SCSS.
- QR code generation with Python and integration of the menu link into the code.
- Fast access to the menu through QR code scanning, linked to the menu interface.
- You can access the online menu by scanning the QR code below.
- Clone the repository:
git clone https://github.com/SimplyProgYT/online-menu-qr-code.git
- Install the required packages:
pip install -r requirements.txt
- Generate the QR code with Python
python generate_qr.py
- Compile SCSS to CSS
-
To generate the CSS files from SCSS, run your SCSS compiler. Note that the dist folder where the compiled CSS files are placed is listed in .gitignore, so these files are not tracked in the repository.
-
Make sure you have a tool like sass or another SCSS compiler installed. For example:
sass src/styles.scss dist/styles.css
-This command will compile src/styles.scss into dist/styles.css. Adjust the file paths as necessary based on your setup.