initial commit

This commit is contained in:
2026-01-26 14:19:24 +01:00
commit f332d62f8a
8 changed files with 538 additions and 0 deletions

14
assets/scripts/main.js Normal file
View File

@@ -0,0 +1,14 @@
document.addEventListener("DOMContentLoaded", () => {
const ctaBtn = document.getElementById("cta-btn");
const form = document.getElementById("contact-form");
ctaBtn.addEventListener("click", () => {
alert("This template is ready to be extended 🚀");
});
form.addEventListener("submit", (e) => {
e.preventDefault();
alert("Form submission placeholder.");
form.reset();
});
});