Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: purge unused files #116

Merged
merged 5 commits into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions front/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,11 @@ Here's a brief overview of the structure:

```bash
.
├── apps # Nuxt Layer
│ └── app # App Page
│ └── landing # Landing Page
├── components # Global Components
├── content # Nuxt Content
├── pages # Nuxt Content
├── layouts # Layouts
├── plugins # Plugins
├── stores # Stores
├── ui # UI Component Library
├── app.config.ts # Application Config
```

Expand Down
4 changes: 2 additions & 2 deletions front/chains/kadena/adapters/xwallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { defineStore } from 'pinia'
const metadata = {
name: 'Ecko Wallet',
id: 'provider:kadena:x-wallet',
icon: '/ecko.png',
icon: '/images/wallets/ecko.png',
disabled: false
}

Expand All @@ -23,7 +23,7 @@ export const provider = defineStore({
state: (): any => ({
account: null,
callback: undefined,
icon: '/ecko.png'
icon: '/images/wallets/ecko.png'
}),

getters: {
Expand Down
4 changes: 2 additions & 2 deletions front/components/Auth/steps/Connect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const emits = defineEmits(['changeStep'])
<div class="lg:hidden">
<figure class="flex justify-center items-center">
<img
src="/auth-bg.png"
src="/images/auth/hero.webp"
alt="Hero illustration"
quality="100"
class="min-w-[608px] max-w-[608px]"
Expand Down Expand Up @@ -66,7 +66,7 @@ const emits = defineEmits(['changeStep'])
"
>
<img
src="/auth-bg.png"
src="/images/auth/hero.webp"
alt="Hero illustration"
quality="100"
class="
Expand Down
2 changes: 1 addition & 1 deletion front/components/Faucet/steps/Connect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const config = useRuntimeConfig()
</button>
</div>

<SelectWallet
<UISelectWallet
label="Connect Wallet"
@connected="handle(token)"
/>
Expand Down
2 changes: 1 addition & 1 deletion front/components/Faucet/steps/Token.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const pay = async () => {
:modelValue="100"
/>

<SelectToken
<UISelectToken
:token="data.token"
@selected="data.token = $event"
/>
Expand Down
2 changes: 1 addition & 1 deletion front/components/Home/Button/Receive.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const data = reactive({
@click.prevent="data.show = true"
/>

<ModalTokenType
<UIModalTokenType
title="Receive"
:show="data.show"
@close="data.show = false"
Expand Down
2 changes: 1 addition & 1 deletion front/components/Home/Button/Send.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const data = reactive({
@click.prevent="data.show = true"
/>

<ModalTokenType
<UIModalTokenType
title="Send"
baseRoute="send"
:show="data.show"
Expand Down
2 changes: 1 addition & 1 deletion front/components/Home/Widget/History.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const router = useRouter()
<div>
<img
class="w-[120px]"
src="/empty-receipts.png"
src="/images/empty/receipts.png"
/>
</div>

Expand Down
4 changes: 2 additions & 2 deletions front/components/Home/Widget/Tokens.vue
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ const balance = computed(() => {
>
<div>
<img
src="/empty-tokens.png"
src="/images/empty/tokens.png"
class="w-[218px]"
/>
</div>
Expand Down Expand Up @@ -230,7 +230,7 @@ const balance = computed(() => {
>
<div>
<img
src="/empty-tokens.png"
src="/images/empty/tokens.png"
class="w-[218px]"
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion front/components/Invoice/NFT/steps/Connect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const emit = defineEmits(['changeStep'])
</span>
</div>

<SelectWallet
<UISelectWallet
@connected="emit('changeStep', 'payment')"
/>
</UICardBody>
Expand Down
2 changes: 1 addition & 1 deletion front/components/Invoice/NFT/steps/Payment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const { provider } = useExtensions()
title="Confirm deposit information"
/>

<SelectNFT
<UISelectNFT
:disabled="!provider"
:token="selectedToken"
@selected="selectedToken = $event"
Expand Down
2 changes: 1 addition & 1 deletion front/components/Invoice/NFT/steps/Success.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const router = useRouter()
<div
class="mx-auto"
>
<img src="/success.png" class="w-[100px]" />
<img src="/images/feedback/success.png" class="w-[100px]" />
</div>

<div class="mx-auto flex flex-col gap-3">
Expand Down
2 changes: 1 addition & 1 deletion front/components/Invoice/Token/steps/Connect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const emit = defineEmits(['changeStep'])
</span>
</div>

<SelectWallet
<UISelectWallet
@connected="emit('changeStep', 'payment')"
/>
</UICardBody>
Expand Down
2 changes: 1 addition & 1 deletion front/components/Invoice/Token/steps/Payment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ watch(
v-model="amount"
/>

<SelectToken
<UISelectToken
:token="selectedToken"
@selected="selectedToken = $event"
/>
Expand Down
2 changes: 1 addition & 1 deletion front/components/Invoice/Token/steps/Success.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const router = useRouter()
<div
class="mx-auto"
>
<img src="/success.png" class="w-[100px]" />
<img src="/images/feedback/success.png" class="w-[100px]" />
</div>

<div class="mx-auto flex flex-col gap-3">
Expand Down
113 changes: 0 additions & 113 deletions front/components/LP/site-collapsible/Collapsible.vue

This file was deleted.

Loading
Loading