diff --git a/src/html.gleam b/src/html.gleam
index 16582de..45cae9b 100644
--- a/src/html.gleam
+++ b/src/html.gleam
@@ -55,8 +55,8 @@ pub fn created(key: String) -> String {
text("The server never stores or sees the decryption key."),
]),
html.div([attribute.class("notice")], [
- html.strong([], [text("Burn after reading")]),
- text(" — This paste will be deleted after the first view"),
+ html.strong([], [text("Beware")]),
+ text(" — This paste will be burned after the first view!"),
]),
html.div(
[attribute.attribute("data-paste-id", key), attribute.class("hidden")],
@@ -100,7 +100,7 @@ pub fn not_found() -> String {
layout.card([
html.h2([], [text("Paste not found")]),
html.p([], [
- text("This paste may have already been viewed and deleted."),
+ text("This content has already been burned 🔥"),
]),
html.a([attribute.href("/"), attribute.class("btn-primary")], [
text("Create New Paste"),