-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
248 additions
and
110 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...ponents/JettonManage/JettonManageForm.vue → ...omponents/DevTools/ContractManageForm.vue
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
File renamed without changes.
File renamed without changes.
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
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
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
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,82 @@ | ||
<script setup lang="ts"> | ||
import CardItem from '@/components/CardItem.vue'; | ||
import FindContract from '@/components/FindContract.vue'; | ||
import JettonDeployForm from '@/components/JettonDeploy/JettonDeployForm.vue'; | ||
import JettonExample from '@/components/JettonDeploy/JettonExample.vue'; | ||
</script> | ||
|
||
<template> | ||
<div | ||
class="fixed-grid has-1-cols-mobile has-1-cols-tablet has-4-cols-desktop has-4-cols-widescreen has-4-cols-fullhd"> | ||
<div class="grid is-gap-1"> | ||
|
||
<div class="cell is-col-span-4-desktop is-row-span-4-desktop"> | ||
<div class="box container is-fliud is-shadowless has-background-light"> | ||
<h1 class="title">{{ $t('message.NewJettonForm.SearchFormTitle') }}</h1> | ||
<FindContract /> | ||
</div> | ||
</div> | ||
|
||
<div class="cell is-col-span-3-desktop"> | ||
<div class="box container is-fliud is-shadowless has-background-light"> | ||
<h1 class="title">{{ $t('message.pageTitles.NewJetton') }}</h1> | ||
<JettonDeployForm /> | ||
</div> | ||
</div> | ||
|
||
<div class="cell"> | ||
<div class=""> | ||
<JettonExample jetton-name="Example name" jetton-description="An example of jetton description" | ||
:jetton-max-supply=1337 jetton-symbol="SMBL" /> | ||
</div> | ||
</div> | ||
|
||
<div class="cell is-col-span-4-desktop"> | ||
<div class="box is-shadowless"> | ||
<CardItem emoji="🤔" :title="$t('message.NewJettonCards.Information.Title')" | ||
:description="$t('message.NewJettonCards.Information.Description')" /> | ||
</div> | ||
</div> | ||
|
||
<div class="cell is-col-span-1-desktop"> | ||
<div class="box is-shadowless has-background-danger-light"> | ||
<CardItem emoji="⚠️" :title="$t('message.NewJettonCards.WorkInProgress.Title')" | ||
:description="$t('message.NewJettonCards.WorkInProgress.Description')" | ||
:link-text="$t('message.NewJettonCards.WorkInProgress.LinkText')" | ||
link-url="https://github.com/supadupadao/minter/issues" /> | ||
</div> | ||
</div> | ||
|
||
<div class="cell is-col-span-1-desktop"> | ||
<div class="box is-shadowless has-background-light"> | ||
<CardItem emoji="🛠️" :title="$t('message.NewJettonCards.Managable.Title')" | ||
:description="$t('message.NewJettonCards.Managable.Description')" /> | ||
</div> | ||
</div> | ||
|
||
<div class="cell is-col-span-1-desktop"> | ||
<div class="box is-shadowless has-background-link-light"> | ||
<CardItem emoji="👨💻" :title="$t('message.NewJettonCards.OpenSource.Title')" | ||
:description="$t('message.NewJettonCards.OpenSource.Description')" | ||
:link-text="$t('message.NewJettonCards.OpenSource.LinkText')" | ||
link-url="https://github.com/supadupadao/jetton" /> | ||
</div> | ||
</div> | ||
|
||
<div class="cell is-col-span-1-desktop"> | ||
<div class="box is-shadowless has-background-info-light"> | ||
<CardItem emoji="⛓️" :title="$t('message.NewJettonCards.Decentralized.Title')" | ||
:description="$t('message.NewJettonCards.Decentralized.Description')" /> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
.cell { | ||
display: flex; | ||
} | ||
</style> |
Oops, something went wrong.