Skip to content

Commit 39dbd6b

Browse files
committed
fix: correct to new name
Signed-off-by: Andre Nogueira <aanogueira@protonmail.com>
1 parent 03390c1 commit 39dbd6b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
2-
textarea:
2+
hashpad:
33
build: .
4-
container_name: textarea
4+
container_name: hashpad
55
restart: unless-stopped
66
ports:
77
- "8080:8080"

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
<meta name="theme-color" content="#000000" media="(prefers-color-scheme: dark)">
88
<link rel="manifest" href="manifest.json">
99
<link rel="icon" href="favicon.png" type="image/png">
10-
<title>Textarea</title>
10+
<title>Hashpad</title>
1111
<style>
1212
/* ============================================================
1313
DEPLOYMENT CONFIGURATION
1414
Customize these variables before deploying to your environment.
1515
============================================================ */
1616
:root {
1717
/* Brand & Identity */
18-
--brand-name: "Textarea";
18+
--brand-name: "Hashpad";
1919
--brand-color: #0569fa;
2020

2121
/* Typography */
@@ -772,7 +772,7 @@ <h2 id="modal-title">Lock with password</h2>
772772

773773
function updateTitle() {
774774
const match = article.textContent.match(/^\n*#(.+)\n/);
775-
document.title = match?.[1]?.trim() || 'Textarea';
775+
document.title = match?.[1]?.trim() || 'Hashpad';
776776
}
777777

778778
function updateLockIndicator() {

0 commit comments

Comments
 (0)