starting app pages

This commit is contained in:
counterweight 2025-02-22 01:10:22 +01:00
parent e31225594b
commit cc790f9efa
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
6 changed files with 47 additions and 4 deletions

View file

@ -0,0 +1,10 @@
const navbuttonHome = document.getElementById('navbutton-home');
const navbuttonOffers = document.getElementById('navbutton-offers');
navbuttonHome.addEventListener('click', () => {
window.location.href = '/home';
});
navbuttonOffers.addEventListener('click', () => {
window.location.href = '/offers';
});

View file

View file