-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new Network selection to settings.
- Loading branch information
1 parent
dcd5bbb
commit f8cce25
Showing
4 changed files
with
246 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
<script setup lang="ts"> | ||
/* Define properties. */ | ||
// https://vuejs.org/guide/components/props.html#props-declaration | ||
const props = defineProps({ | ||
data: { | ||
type: [Object], | ||
}, | ||
}) | ||
// onMounted(() => { | ||
// console.log('Mounted!') | ||
// // Now it's safe to perform setup operations. | ||
// }) | ||
// onBeforeUnmount(() => { | ||
// console.log('Before Unmount!') | ||
// // Now is the time to perform all cleanup operations. | ||
// }) | ||
</script> | ||
|
||
<template> | ||
<main> | ||
<legend class="text-3xl font-light leading-6 text-sky-500 italic tracking-tighter"> | ||
Choose Your ACTIVE Network | ||
</legend> | ||
|
||
<div class="mt-6 grid grid-cols-1 gap-y-6 sm:grid-cols-3 sm:gap-x-4"> | ||
<!-- Active: "border-sky-600 ring-2 ring-sky-600", Not Active: "border-gray-300" --> | ||
<label aria-label="Newsletter" aria-description="Last activity was an hour ago to 621 users" class="relative flex cursor-pointer rounded-lg border border-gray-300 bg-white p-4 shadow-sm focus:outline-none"> | ||
<input type="radio" name="project-type" value="Newsletter" class="sr-only" /> | ||
<span class="flex flex-1"> | ||
<span class="flex flex-col"> | ||
<span class="block text-lg font-medium text-gray-700 tracking-tighter"> | ||
Nexa Core | ||
</span> | ||
|
||
<span class="mt-1 flex items-center text-sm text-gray-500"> | ||
Last activity was an hour ago | ||
</span> | ||
|
||
<span class="mt-6 text-xs font-medium text-gray-500"> | ||
Nexa Layer1 VM | ||
</span> | ||
</span> | ||
</span> | ||
<!-- Not Checked: "invisible" --> | ||
<svg class="invisible h-7 w-auto text-sky-600" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> | ||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z" clip-rule="evenodd" /> | ||
</svg> | ||
<!-- | ||
Active: "border", Not Active: "border-2" | ||
Checked: "border-sky-600", Not Checked: "border-transparent" | ||
--> | ||
<span class="pointer-events-none absolute -inset-px rounded-lg border-2 border-transparent" aria-hidden="true"></span> | ||
</label> | ||
|
||
<!-- Active: "border-sky-600 ring-2 ring-sky-600", Not Active: "border-gray-300" --> | ||
<label aria-label="Existing Customers" aria-description="Last activity was 2 weeks ago to 1200 users" class="relative flex cursor-pointer rounded-lg border border-sky-600 ring-2 ring-sky-600 bg-white p-4 shadow-sm focus:outline-none"> | ||
<input type="radio" name="project-type" value="Existing Customers" class="sr-only" /> | ||
<span class="flex flex-1"> | ||
<span class="flex flex-col"> | ||
<span class="block text-lg font-medium text-gray-700 tracking-tighter"> | ||
Nxy Supernet | ||
</span> | ||
|
||
<span class="mt-1 flex items-center text-sm text-gray-500"> | ||
Last activity was 4 days ago | ||
</span> | ||
|
||
<span class="mt-6 text-xs font-medium text-gray-500"> | ||
Nexa Layer1+ VM | ||
</span> | ||
</span> | ||
</span> | ||
<!-- Not Checked: "invisible" --> | ||
<svg class="h-7 w-auto text-sky-600" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> | ||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z" clip-rule="evenodd" /> | ||
</svg> | ||
<!-- | ||
Active: "border", Not Active: "border-2" | ||
Checked: "border-sky-600", Not Checked: "border-transparent" | ||
--> | ||
<span class="pointer-events-none absolute -inset-px rounded-lg border border-sky-600" aria-hidden="true"></span> | ||
</label> | ||
|
||
<!-- Active: "border-sky-600 ring-2 ring-sky-600", Not Active: "border-gray-300" --> | ||
<label aria-label="Trial Users" aria-description="Last activity was 4 days ago to 2740 users" class="relative flex cursor-pointer rounded-lg border border-gray-300 bg-white p-4 shadow-sm focus:outline-none"> | ||
<input type="radio" name="project-type" value="Trial Users" class="sr-only" /> | ||
<span class="flex flex-1"> | ||
<span class="flex flex-col"> | ||
<span class="block text-lg font-medium text-gray-700 tracking-tighter"> | ||
Nxy MetaNet | ||
</span> | ||
|
||
<span class="mt-1 flex items-center text-sm text-gray-500"> | ||
There is NO activity recorded yet | ||
</span> | ||
|
||
<span class="mt-6 text-xs font-medium text-gray-500"> | ||
Ethereum Layer1 VM | ||
</span> | ||
</span> | ||
</span> | ||
<!-- Not Checked: "invisible" --> | ||
<svg class="invisible h-7 w-auto text-sky-600" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> | ||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z" clip-rule="evenodd" /> | ||
</svg> | ||
<!-- | ||
Active: "border", Not Active: "border-2" | ||
Checked: "border-sky-600", Not Checked: "border-transparent" | ||
--> | ||
<span class="pointer-events-none absolute -inset-px rounded-lg border-2 border-transparent" aria-hidden="true"></span> | ||
</label> | ||
</div> | ||
</main> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.