A modern, responsive business dashboard application built with vanilla HTML, CSS, and JavaScript. Features a complete authentication system and interactive data visualizations.
๐ View Live Demo
Note: GitHub Pages may take a few minutes to deploy. If the link doesnโt work immediately, please wait 5-10 minutes and try again.
Alternatively, you can download and open mint-fresh-app.html
in your browser locally.
Use any of these credentials to access the dashboard:
Role | Password | |
---|---|---|
Admin | admin@mintfresh.com |
admin123 |
Demo | demo@mintfresh.com |
demo123 |
User | user@mintfresh.com |
user123 |
Test | test@example.com |
password123 |
mint-fresh-dashboard/
โโโ mint-fresh-app.html # Main application file
โโโ .superdesign/ # Original design iterations
โ โโโ design_iterations/
โ โโโ dashboard_1.html # Original dashboard
โ โโโ login_1.html # Original login
โ โโโ login_theme_1.css # Design system tokens
โโโ memory-bank/ # Project documentation
โ โโโ projectbrief.md # Project overview
โ โโโ productContext.md # Product requirements
โ โโโ techContext.md # Technical specifications
โ โโโ systemPatterns.md # Architecture patterns
โ โโโ activeContext.md # Current project state
โ โโโ progress.md # Development progress
โโโ README.md # This file
git clone https://github.com/LeoPBgit/mint-fresh-dashboard.git
cd mint-fresh-dashboard
# Option 1: Open directly in browser
open mint-fresh-app.html
# Option 2: Serve with a local server (recommended)
python -m http.server 8000
# Then visit http://localhost:8000/mint-fresh-app.html
The application uses a sophisticated OKLCH-based color system. Modify colors in the CSS custom properties:
:root {
--primary: oklch(0.65 0.15 180);
--secondary: oklch(0.95 0.03 180);
--background: oklch(0.98 0.02 180);
/* ... more color tokens */
}
Update chart data and statistics by modifying the JavaScript objects in mint-fresh-app.html
:
// Revenue chart data
data: [18500, 19200, 18700, 17500, 22000, 24500, ...]
// Statistics cards
{ title: 'Total Revenue', value: '$24,780', trend: '+12%' }
The application is fully responsive with breakpoints at:
git checkout -b feature/amazing-feature
)git commit -m 'Add amazing feature'
)git push origin feature/amazing-feature
)This project is licensed under the MIT License - see the LICENSE file for details.
Built with โค๏ธ for modern web experiences