1. Figure out how to deal with a large number of images on a single page. (Do I make one big call for all gloves from the database or multiple smaller calls?) 2. Figure out how to reuse an html template for different data. (I want to use the same display for gloves that I use for bats) 3. Figure out how to handle payments properly. (Not going to do this in the current version) 4. How to set up the baseball database schema. (Do I have separate tables for each category, or do I have one table for all the items and just query for specific types?) 5. Upload to github to keep track of changes and versioning. (done) Function for extracting data from the url and putting it in the title // const urlParams = new URLSearchParams(window.location.search); // const sport = urlParams.get('sport'); // console.log(sport); // insert_title(sport); // function insert_title(sport) { // let num_words = sport.trim().split(/\s+/).length; // console.log("Word length of sport: ", num_words); // if (num_words < 2) { // document.getElementById("title").innerText = sport + " Items"; // } else { // document.getElementById("title").innerText = sport; // } // }