Initial commit

This commit is contained in:
2025-02-18 21:56:51 +03:00
commit b56e6b5e46
19 changed files with 6998 additions and 0 deletions

27
frontend/src/App.vue Normal file
View File

@@ -0,0 +1,27 @@
<template>
<div id="app">
<h1>Добро пожаловать в DApp-for-Business</h1>
<appkit-button
balance="show"
size="md"
label="Подключить кошелек"
loadingLabel="Подключение..."
/>
<ContractInteraction />
</div>
</template>
<script>
import ContractInteraction from './components/ContractInteraction.vue'
export default {
name: "App",
components: {
ContractInteraction
}
};
</script>
<style>
/* Добавьте ваши стили здесь */
</style>