From 7e9017511a0748ba5337e8a7c4b77d0e0285a05d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Neves?= Date: Fri, 19 Jun 2026 20:04:59 +0000 Subject: [PATCH] fix(index.html): sync og:title and twitter:title to include BOLT12 The page mentions BOLT12 support, but the og:title and twitter:title meta tags only listed BOLT11, LNURL, and Lightning Address. This caused inconsistency when the page is shared on social media platforms. Updated both tags to list the same formats as the page title: Lightning Address, LNURL, BOLT11, and BOLT12. --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 25a9a08..42d0fda 100644 --- a/index.html +++ b/index.html @@ -14,7 +14,7 @@ <!-- Graph Tags --> <meta property="og:url" content="https://lightningdecoder.com" /> <meta property="og:site_name" content="Lightning Decoder" /> - <meta property="og:title" content="Decode Lightning Network Requests - BOLT11, LNURL, and Lightning Address" /> + <meta property="og:title" content="Decode Lightning Network Requests - Lightning Address, LNURL, BOLT11, and BOLT12" /> <meta property="og:type" content="text" /> <meta property="og:image" content="https://i.imgur.com/92TblqG.png" /> <meta property="og:determiner" content="auto" /> @@ -25,7 +25,7 @@ <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:site" content="@andreneves"> <meta name="twitter:creator" content="@andreneves"> - <meta name="twitter:title" content="Decode Lightning Network Requests - BOLT11, LNURL, and Lightning Address"> + <meta name="twitter:title" content="Decode Lightning Network Requests - Lightning Address, LNURL, BOLT11, and BOLT12"> <meta name="twitter:description" content="Lightning Decoder is a tool for decoding Lightning Network request codes - BOLT11s, LNURL codes, and Lightning Addresses are supported."> <meta name="twitter:image" content="https://i.imgur.com/92TblqG.png"> <!-- End Twitter Tags -->