Source: btns.js

/**
 * Buttons module
 * @module btns
 */

/**
 * Button to continue the game after completing a level.
 * 
 * @type {HTMLElement}
 */
export const nextBtn = document.getElementById("next-btn");

/**
 * Button to display the stitching section. Allows users to add stitched patterns to their items.
 * 
 * @type {HTMLElement | null}
 */
export const stichingSectionBtn = document.getElementById("stiching-section-btn");

/**
 * Button to display the dyeing section. Enables users to apply colors to their items.
 * 
 * @type {HTMLElement | null}
 */
export const dyeingSectionBtn = document.getElementById("dyeing-section-btn");

/**
 * Button to display the cutting section. Allows users to transform items into new shapes or styles.
 * 
 * @type {HTMLElement | null}
 */
export const cuttingSectionBtn = document.getElementById("cutting-section-btn");