card three page

This commit is contained in:
2026-01-07 14:58:47 -08:00
parent 65ee74026c
commit 058fc17f89
5 changed files with 61 additions and 8 deletions

View File

@ -7,7 +7,11 @@ const cards = [
{
title: "card two",
href: "/card-two/"
}
},
{
title: "card three",
href: "/card-three/"
}
]
const constructMenuLink = function(title, href) {
@ -76,7 +80,7 @@ const firstDropdownItem = dropdownItems[0];
const lastDropdownItem = dropdownItems[dropdownItems.length - 1];
const openDropdown = function() {
dropdownContent.classList.add("show");
dropdownContent.classList.add("show");
dropdownContent.setAttribute("aria-hidden", "false");
dropdownButton.setAttribute("aria-expanded", "true");
}