|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en" style="background:#272822"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>License - NostrKey</title> |
| 7 | + <meta name="description" content="MIT License for NostrKey browser extension - open-source Nostr key management."> |
| 8 | + |
| 9 | + <link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='45' stroke='%23a6e22e' stroke-width='4' fill='%233e3d32'/><path d='M35 50L45 60L65 40' stroke='%23a6e22e' stroke-width='6' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>"> |
| 10 | + |
| 11 | + <style> |
| 12 | + :root { |
| 13 | + --bg: #272822; |
| 14 | + --bg-card: #3e3d32; |
| 15 | + --accent: #a6e22e; |
| 16 | + --accent-secondary: #66d9ef; |
| 17 | + --text: #f8f8f2; |
| 18 | + --text-muted: #8f908a; |
| 19 | + --danger: #f92672; |
| 20 | + } |
| 21 | + |
| 22 | + * { |
| 23 | + margin: 0; |
| 24 | + padding: 0; |
| 25 | + box-sizing: border-box; |
| 26 | + } |
| 27 | + |
| 28 | + body { |
| 29 | + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; |
| 30 | + background: var(--bg); |
| 31 | + color: var(--text); |
| 32 | + line-height: 1.6; |
| 33 | + min-height: 100vh; |
| 34 | + } |
| 35 | + |
| 36 | + .container { |
| 37 | + max-width: 900px; |
| 38 | + margin: 0 auto; |
| 39 | + padding: 40px 24px; |
| 40 | + } |
| 41 | + |
| 42 | + header { |
| 43 | + text-align: center; |
| 44 | + margin-bottom: 48px; |
| 45 | + } |
| 46 | + |
| 47 | + .logo { |
| 48 | + width: 60px; |
| 49 | + height: 60px; |
| 50 | + margin-bottom: 12px; |
| 51 | + } |
| 52 | + |
| 53 | + h1 { |
| 54 | + font-size: 2.5rem; |
| 55 | + color: var(--accent); |
| 56 | + margin-bottom: 8px; |
| 57 | + } |
| 58 | + |
| 59 | + .last-updated { |
| 60 | + color: var(--text-muted); |
| 61 | + font-size: 0.875rem; |
| 62 | + } |
| 63 | + |
| 64 | + .back-link { |
| 65 | + display: inline-flex; |
| 66 | + align-items: center; |
| 67 | + gap: 8px; |
| 68 | + color: var(--accent-secondary); |
| 69 | + text-decoration: none; |
| 70 | + margin-bottom: 24px; |
| 71 | + font-size: 0.875rem; |
| 72 | + } |
| 73 | + |
| 74 | + .back-link:hover { |
| 75 | + text-decoration: underline; |
| 76 | + } |
| 77 | + |
| 78 | + section { |
| 79 | + background: var(--bg-card); |
| 80 | + border-radius: 16px; |
| 81 | + padding: 32px; |
| 82 | + margin-bottom: 24px; |
| 83 | + } |
| 84 | + |
| 85 | + h2 { |
| 86 | + color: var(--accent); |
| 87 | + font-size: 1.75rem; |
| 88 | + margin-bottom: 16px; |
| 89 | + } |
| 90 | + |
| 91 | + p { |
| 92 | + margin-bottom: 12px; |
| 93 | + color: var(--text); |
| 94 | + } |
| 95 | + |
| 96 | + a { |
| 97 | + color: var(--accent-secondary); |
| 98 | + text-decoration: none; |
| 99 | + } |
| 100 | + |
| 101 | + a:hover { |
| 102 | + text-decoration: underline; |
| 103 | + } |
| 104 | + |
| 105 | + .license-text { |
| 106 | + background: var(--bg); |
| 107 | + border-left: 4px solid var(--accent); |
| 108 | + padding: 24px; |
| 109 | + border-radius: 8px; |
| 110 | + margin: 16px 0; |
| 111 | + font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace; |
| 112 | + font-size: 0.875rem; |
| 113 | + white-space: pre-wrap; |
| 114 | + line-height: 1.7; |
| 115 | + } |
| 116 | + |
| 117 | + strong { |
| 118 | + color: var(--accent); |
| 119 | + } |
| 120 | + |
| 121 | + footer { |
| 122 | + text-align: center; |
| 123 | + padding: 40px 24px; |
| 124 | + color: var(--text-muted); |
| 125 | + font-size: 0.875rem; |
| 126 | + } |
| 127 | + |
| 128 | + footer a { |
| 129 | + color: var(--accent); |
| 130 | + } |
| 131 | + |
| 132 | + @media (max-width: 600px) { |
| 133 | + h1 { |
| 134 | + font-size: 2rem; |
| 135 | + } |
| 136 | + |
| 137 | + section { |
| 138 | + padding: 24px; |
| 139 | + } |
| 140 | + |
| 141 | + .license-text { |
| 142 | + padding: 16px; |
| 143 | + font-size: 0.8rem; |
| 144 | + } |
| 145 | + } |
| 146 | + </style> |
| 147 | +</head> |
| 148 | +<body> |
| 149 | + <div class="container"> |
| 150 | + <a href="index.html" class="back-link"> |
| 151 | + <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"> |
| 152 | + <path d="M19 12H5M12 19l-7-7 7-7"/> |
| 153 | + </svg> |
| 154 | + Back to Home |
| 155 | + </a> |
| 156 | + |
| 157 | + <header> |
| 158 | + <svg class="logo" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 159 | + <circle cx="50" cy="50" r="45" stroke="#a6e22e" stroke-width="4" fill="#3e3d32"/> |
| 160 | + <path d="M35 50L45 60L65 40" stroke="#a6e22e" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/> |
| 161 | + </svg> |
| 162 | + <h1>MIT License</h1> |
| 163 | + <p class="last-updated">Open-Source Software</p> |
| 164 | + </header> |
| 165 | + |
| 166 | + <section> |
| 167 | + <h2>License</h2> |
| 168 | + <p> |
| 169 | + NostrKey is open-source software released under the <strong>MIT License</strong>. You are free to use, modify, and distribute this software in accordance with the terms below. |
| 170 | + </p> |
| 171 | + |
| 172 | + <div class="license-text">MIT License |
| 173 | + |
| 174 | +Copyright (c) 2024 Ryan Breen |
| 175 | + |
| 176 | +Permission is hereby granted, free of charge, to any person obtaining a copy |
| 177 | +of this software and associated documentation files (the "Software"), to deal |
| 178 | +in the Software without restriction, including without limitation the rights |
| 179 | +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 180 | +copies of the Software, and to permit persons to whom the Software is |
| 181 | +furnished to do so, subject to the following conditions: |
| 182 | + |
| 183 | +The above copyright notice and this permission notice shall be included in all |
| 184 | +copies or substantial portions of the Software. |
| 185 | + |
| 186 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 187 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 188 | +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 189 | +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 190 | +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 191 | +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 192 | +SOFTWARE.</div> |
| 193 | + </section> |
| 194 | + |
| 195 | + <section> |
| 196 | + <h2>Source Code</h2> |
| 197 | + <p> |
| 198 | + The complete source code for NostrKey is publicly available: |
| 199 | + </p> |
| 200 | + <p> |
| 201 | + <a href="https://github.com/HumanjavaEnterprises/nostrkey.browser.plugin.src" target="_blank"> |
| 202 | + https://github.com/HumanjavaEnterprises/nostrkey.browser.plugin.src |
| 203 | + </a> |
| 204 | + </p> |
| 205 | + </section> |
| 206 | + </div> |
| 207 | + |
| 208 | + <footer> |
| 209 | + <p> |
| 210 | + A product by <a href="https://humanjava.com">Humanjava Enterprises Inc</a> · |
| 211 | + <a href="https://github.com/HumanjavaEnterprises/nostrkey.browser.plugin.src">Source Code</a> · |
| 212 | + <a href="license.html">MIT License</a> |
| 213 | + </p> |
| 214 | + <p style="margin-top: 8px;"> |
| 215 | + <a href="index.html">Home</a> · |
| 216 | + <a href="support.html">Support</a> · |
| 217 | + <a href="privacy.html">Privacy Policy</a> · |
| 218 | + <a href="terms.html">Terms & Conditions</a> |
| 219 | + </p> |
| 220 | + </footer> |
| 221 | +</body> |
| 222 | +</html> |
0 commit comments