create dropdown
All checks were successful
Deploy / Deploy to Production (push) Successful in 12s

This commit is contained in:
Julie Blanc 2026-01-21 16:33:15 +01:00
parent d28c90aefe
commit d7a8611376
9 changed files with 275 additions and 66 deletions

View file

@ -5,6 +5,7 @@ import { bannerStickyDesktop } from './banner-sticky-desktop.js';
import { themeToggle } from './themeToggle.js';
import { initHeroSlider } from './hero-slider.js';
import { playVideo } from './hero-video.js';
import { initDropdowns } from './dropdown.js';
const responsiveMedium = 1080;
const responsiveSmall = 768;
@ -19,4 +20,5 @@ window.onload = async function () {
bannerStickyDesktop(responsiveSmall);
initHeroSlider();
playVideo();
initDropdowns();
}