Keeping going :)

This commit is contained in:
Matthew Holt 2023-10-07 16:43:39 -06:00 committed by Francis Lavoie
parent 82439beeae
commit 08076c325b
No known key found for this signature in database
GPG key ID: 0F66EE1687682239
7 changed files with 240 additions and 7 deletions

View file

@ -104,6 +104,9 @@ function nextTheme() {
setTheme(theme);
}
// hoversplash effect!
on('mouseover', '.button:not(.cool), button:not(.cool)', (e) => {
const elem = document.createElement('span');

5
new/resources/js/home.js Normal file
View file

@ -0,0 +1,5 @@
ready(async function() {
const resp = await fetch("/resources/testimonials.json");
const testimonials = await resp.json();
console.log(testimonials);
});