DigitalDash is a web application designed to transform everyday walks into immersive virtual-walking experiences — allowing users to “travel the world” and boost their well-being digitally. The app aims to provide a user-friendly, visually appealing interface built with standard web technologies.
- Immersive user interface for “virtual walking” experiences
- Responsive layout supporting various screen sizes
- Built with HTML, CSS (or SCSS), PHP and/or JavaScript (as per your stack)
- Simple, intuitive navigation and UX for users to explore simulated walking/travel environments
- Ability to extend (or future-proofed) for adding more “walk locations,” map integrations, user preferences, etc.
To run / develop the project locally:
# Clone the repo
git clone https://github.com/sharmake-ibrahim/DigitalDash.git
cd DigitalDash
# Install dependencies (if any; e.g. via npm, Composer, whatever stack uses)
# e.g. for PHP projects maybe no install command; or if you have build tools:
npm install # if using JS build tools
# or install other dependencies as needed
# Start local server
# For PHP: e.g. `php -S localhost:8000 -t .` (or configure as per your setup)
# For static + JS: open index.html in browser / use live-server etc.Then open your browser at:
http://localhost:8000
(or whichever port / setup you use)
✅ Note: This assumes you have the necessary environment (e.g. PHP, or a static server, or Node if JS build tools are used).
/public (or root folder) # static files: HTML, CSS/SCSS, JS, assets (images etc.)
/src (optional) # source code (if project uses build tools)
index.html / index.php # main entry point (or home page)
/css (or /styles) # stylesheets
/js (or /scripts) # JavaScript logic (if applicable)
/assets # images / media / other static assets
README.md # this documentation
...
(Adapt based on how your project is structured currently)
- HTML, CSS (or SCSS)
- PHP (if using backend) / JavaScript for front-end
- Optional JS libraries or frameworks (if used)
- Standard web assets (images, media, etc.)
DigitalDash was built to explore interactive web experiences and to combine web development skills with a creative, user-focused application. It helps practise clean UI design, responsiveness, and builds a foundation for more advanced features — potentially a base for bigger, more feature-rich applications in future.
Contributions are welcome! Possible improvements:
- Add more “walk” / “virtual-travel” locations / environments
- Integrate maps or 3D / interactive visualizations (for richer experience)
- Add user settings / preferences (e.g. theme, saved walks, history)
- Optimize performance and responsiveness
- Add documentation, comments, or tests (if applicable)
- Improve accessibility, UX, or add extra features (animations, transitions, etc.)
Feel free to open issues or send pull requests.
- Currently may be minimal — only basic walking-experience skeleton (depending on project state)
- Needs more content/assets (maps, images, locations) to deliver full immersive experience
- No user authentication / backend (unless later added)
- No persistence (if using static setup)
Happy Coding!