Update branding
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Simple QR Generator</title>
|
||||
<title>QRDAMAGE.NET</title>
|
||||
<meta name="description" content="Fast, offline, multi-format QR code generator.">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<link rel="icon" type="image/svg+xml" href="favicon.svg">
|
||||
@@ -15,7 +15,7 @@
|
||||
<main class="app-container">
|
||||
<section class="pane input-pane">
|
||||
<header>
|
||||
<h1>QR Generator</h1>
|
||||
<h1>QR DAMAGE</h1>
|
||||
</header>
|
||||
|
||||
<div class="control-group">
|
||||
|
||||
@@ -296,7 +296,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||
if (img && img.src) {
|
||||
const link = document.createElement('a');
|
||||
link.href = img.src;
|
||||
link.download = `qr-damage-${Date.now()}.png`;
|
||||
link.download = `qrdamage-${Date.now()}.png`;
|
||||
document.body.appendChild(link);
|
||||
link.click();
|
||||
link.remove();
|
||||
@@ -310,7 +310,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||
const url = URL.createObjectURL(blob);
|
||||
const link = document.createElement('a');
|
||||
link.href = url;
|
||||
link.download = `qr-damage-${Date.now()}.svg`;
|
||||
link.download = `qrdamage-${Date.now()}.svg`;
|
||||
document.body.appendChild(link);
|
||||
link.click();
|
||||
link.remove();
|
||||
|
||||
Reference in New Issue
Block a user