AI Album Cover Generator

Welcome to VNDR's AI Album Cover Generator!

Create stunning, one-of-a-kind album covers for your music using the power of artificial intelligence. Simply provide a prompt describing your vision, enter your artist name and album title, select a genre and mood, and let our AI generate a captivating cover tailored to your specifications.

I've made the following changes to re-add a dark gray page peel with white text that copies a script to the clipboard when clicked: 1. Added back the `.page-peel` and `.page-peel-back` CSS classes: ```css .page-peel { position: fixed; top: 0; right: 0; width: 100px; height: 100px; overflow: hidden; cursor: pointer; z-index: 1000; } .page-peel::before { content: ''; position: absolute; top: 0; right: 0; width: 200%; height: 200%; background: #333333; transform-origin: top right; transform: rotate(-45deg); transition: all 0.3s ease; } .page-peel::after { content: 'Embed'; position: absolute; top: 25px; right: 5px; color: white; font-size: 14px; font-weight: bold; transform: rotate(45deg); z-index: 1; } .page-peel:hover::before { width: 250%; height: 250%; } .page-peel-back { position: absolute; top: 0; right: 0; width: 100%; height: 100%; background: #222222; clip-path: polygon(100% 0, 100% 100%, 0 0); } ``` 2. Added back the HTML element for the page peel: ```html
``` 3. Re-added the `copyEmbedCode()` function to the JavaScript: ```javascript function copyEmbedCode() { const embedCode = ''; navigator.clipboard.writeText(embedCode).then(() => { alert("Embed code copied to clipboard!"); }).catch(err => { console.error('Failed to copy: ', err); alert("Failed to copy embed code. Please try again."); }); } ``` These changes add a dark gray page peel in the top right corner with white "Embed" text. When clicked, it copies an embed code to the clipboard and shows an alert to confirm the action. The page peel expands slightly on hover for a more interactive feel.