A modern, responsive admin dashboard template built with Bootstrap 5, featuring a clean design and comprehensive functionality for web applications.
Concept is a modern admin template built from the ground up with Bootstrap 5.3.7, Vite, and ES6 modules. This jQuery-free dashboard provides a solid foundation for building admin panels, analytics dashboards, and management systems.
git clone https://github.com/yourusername/concept.git
cd concept
npm install
npm run dev
npm run build
npm run preview
concept/
├── src/
│ ├── assets/ # Static assets (images, fonts)
│ ├── js/ # JavaScript modules
│ │ ├── components/ # Reusable components
│ │ └── pages/ # Page-specific scripts
│ ├── pages/ # HTML pages
│ │ ├── dashboards/ # Dashboard pages
│ │ ├── ui-elements/ # UI component pages
│ │ └── misc/ # Miscellaneous pages
│ ├── partials/ # Handlebars partials
│ │ └── layouts/ # Layout components
│ ├── scss/ # SCSS styles
│ │ ├── components/ # Component styles
│ │ ├── layouts/ # Layout styles
│ │ └── pages/ # Page-specific styles
│ └── index.html # Main entry point
├── dist/ # Production build output
├── docs/ # Documentation
├── scripts/ # Build and utility scripts
├── package.json # Project dependencies
└── vite.config.js # Vite configuration
bootstrap@5.3.7 - UI framework@fortawesome/fontawesome-free@7.0.0 - Icon libraryvite@7.0.6 - Build toolsass@1.89.2 - CSS preprocessorchart.js@4.5.0 - Charts and graphsdatatables.net-bs5@2.2.3 - Advanced tables@fullcalendar/core@6.1.15 - Calendar functionalitytom-select@2.4.1 - Enhanced select boxesvite-plugin-handlebars@2.0.0 - Handlebars support@vitejs/plugin-legacy@7.1.0 - Legacy browser supportsrc/pages/vite.config.js in the rollupOptions.input sectionsrc/js/pages/src/scss/pages/ and import in main.scsssrc/partials/layouts/sidebar.hbsJavaScript modules follow this pattern:
export function initializeComponent() {
// Component logic
}
// Auto-initialize on DOM ready
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initializeComponent);
} else {
initializeComponent();
}
The production build can be deployed to any static hosting service:
npm run builddist/ folder to your hosting serviceindex.html for all routesComprehensive documentation is available in the docs/ directory:
Navigation links have been updated to work with static hosting. The template now deploys correctly to:
_redirects file included)See the Complete Deployment Guide for details.
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License - see the LICENSE file for details.
For support, please open an issue in the GitHub repository or contact support@yourcompany.com.