This website uses cookies to ensure you get the best experience on our website. By continuing to use this site, you agree to our use of cookies. Learn more
Bloom Nails & Beauty. All rights reserved." // A safer way would be to have a span with an ID like // For now, we'll replace the placeholder script tag content if it exists, or just append the year. let originalText = footerParagraph.innerHTML; const scriptPlaceholder = ''; if (originalText.includes(scriptPlaceholder)) { footerParagraph.innerHTML = originalText.replace(scriptPlaceholder, currentYear); } else { // Fallback: try to find the copyright symbol and insert year after it const copyrightSymbol = '©'; if (originalText.includes(copyrightSymbol)) { footerParagraph.innerHTML = originalText.replace(copyrightSymbol, copyrightSymbol + ' ' + currentYear); } else { // Last resort: just prepend the year footerParagraph.innerHTML = currentYear + ' ' + originalText; } } } });