Update page title and image file name

This commit is contained in:
Candifloss 2026-08-08 15:25:23 +05:30
parent d4ad7468f2
commit d92abc173b
2 changed files with 2 additions and 2 deletions

2
app.js
View File

@ -79,7 +79,7 @@ document.getElementById("downloadBtn").onclick = () => {
if (!bgImg) return;
const link = document.createElement("a");
link.download = "wallpaper.png";
link.download = "overlay_image.png";
link.href = canvas.toDataURL("image/png");
link.click();
};

View File

@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Wallpaper Composer</title>
<title>Image Overlay</title>
<link rel="stylesheet" href="style.css">
</head>
<body>