7d946908c8
- Searched for DESIGN_PROPOSAL.md across the filesystem and git history (not found). - Created basic index.html, styles.css, and script.js to start the landing page implementation. - Planned a responsive, pixel-art themed design for the faebits brand. Co-authored-by: micmug <185775013+micmug@users.noreply.github.com>
5 lines
134 B
JavaScript
5 lines
134 B
JavaScript
// Basic interactivity
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
console.log('faebits landing page initialized');
|
|
});
|