start implementing client based on meshtxt

This commit is contained in:
liamcottle
2025-02-13 01:02:27 +13:00
parent fd680c2aeb
commit 6d4e7e4431
24 changed files with 3279 additions and 3 deletions

View File

@@ -0,0 +1,28 @@
<template>
<Page>
<!-- app bar -->
<AppBar title="Connect" subtitle="Select a Connection Method"/>
<!-- list -->
<div class="mx-auto my-auto">
<ConnectButtons/>
</div>
</Page>
</template>
<script>
import AppBar from "../AppBar.vue";
import Page from "./Page.vue";
import ConnectButtons from "../connect/ConnectButtons.vue";
export default {
name: 'ConnectPage',
components: {
ConnectButtons,
Page,
AppBar,
},
}
</script>