WEC components and files will be developed in this organization
my_app/
├── app.py # Main app file to run the Streamlit app
├── installation.txt # Instructions for installing dependencies
├── README.md # Project documentation
├── components/ # Folder for reusable Python class files
│ ├── __init__.py # To make it a Python package (optional)
│ ├── class1.py # Example class file
│ ├── class2.py # Example class file
│ └── ... # Additional class files
├── pages/ # Folder for individual pages (Streamlit scripts)
│ ├── Home.py # Home page
│ ├── About.py # About page
│ ├── Contact.py # Contact page
│ └── ... # Additional pages