fix: initial commit
This commit is contained in:
18
js/app.js
Normal file
18
js/app.js
Normal file
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* Main Application Entry Point
|
||||
* Imports and registers all web components
|
||||
*/
|
||||
|
||||
// Import all components
|
||||
import './components/site-header.js';
|
||||
import './components/top-bar.js';
|
||||
import './components/horizontal-scroll-nav.js';
|
||||
import './components/search-bar.js';
|
||||
import './components/site-content.js';
|
||||
import './components/site-footer.js';
|
||||
import './components/book-card.js';
|
||||
|
||||
// App initialization (if needed)
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
console.log('BookStore app initialized');
|
||||
});
|
||||
Reference in New Issue
Block a user