Added page for Experimental features, with NIP-26 support.

This commit is contained in:
Ryan Breen
2023-02-06 20:45:20 -05:00
parent 2aabd443e1
commit 6c83c24921
14 changed files with 363 additions and 49 deletions

View File

@@ -9,7 +9,7 @@
</head>
<body x-data="options" class="text-fuchsia-900 p-3.5 lg:p-32">
<body x-data="options" class="text-fuchsia-900 p-3.5 lg:p-32">
<h1 class="text-3xl lg:text-6xl font-bold md:text-center">Settings</h1>
<!-- PROFILES -->
@@ -22,7 +22,8 @@
</template>
</select>
<div class="block md:inline p-3 pl-0 md:p-0">
<button class="button" @click.prevent="await newProfile()">New</button>
<button class="button" @click.prevent="newProfile">New</button>
<button class="button" @click.prevent="newDelegated" x-show="delegationActive">New Delegate</button>
<button class="button" @click.prevent="deleteProfile">Delete</button>
</div>
</div>
@@ -158,6 +159,10 @@
<button class="button" @click.prevent="window.close()">Close</button>
<button class="button" @click.prevent="clearData">Clear Data</button>
</div>
<div class="mt-6">
<a href="experimental.html" class="border-none hover:underline">Experimental features →</a>
</div>
</body>
</html>