mirror of
https://github.com/Instadapp/assembly.git
synced 2024-07-29 22:37:06 +00:00
changes
This commit is contained in:
parent
a2a8f3e7d0
commit
df6cb13eb4
|
@ -2,6 +2,9 @@
|
||||||
<div class="flex flex-col items-center text-primary-black flex-shrink-0 w-full px-8 mb-2 text-center sm:mb-10">
|
<div class="flex flex-col items-center text-primary-black flex-shrink-0 w-full px-8 mb-2 text-center sm:mb-10">
|
||||||
<h3 class="flex items-center font-medium leading-none">Balance</h3>
|
<h3 class="flex items-center font-medium leading-none">Balance</h3>
|
||||||
<div class="mt-2 font-semibold text-32">{{ formatUsd(balanceTotal) }}</div>
|
<div class="mt-2 font-semibold text-32">{{ formatUsd(balanceTotal) }}</div>
|
||||||
|
<div class="mt-1 flex items-center text-grey-dark">
|
||||||
|
Your Instadapp Balance <Info text="This is your Instadapp Contract Account balance, not your web3 wallet balance." class="ml-1" />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,22 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="min-h-screen relative overflow-hidden font-sans antialiased text-primary-black"
|
class="relative overflow-hidden font-sans antialiased text-primary-black"
|
||||||
>
|
>
|
||||||
<Navbar />
|
<div class="min-h-screen flex flex-col">
|
||||||
<div class="max-w-6xl mx-auto py-12 overflow-x-hidden ">
|
<Navbar />
|
||||||
<div>
|
<div class="flex-1 overflow-x-hidden ">
|
||||||
<Nuxt />
|
<div class="max-w-6xl mx-auto py-12">
|
||||||
|
<Nuxt />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="text-center py-8">
|
||||||
|
<a
|
||||||
|
class="font-medium text-primary-blue-dark hover:text-primary-blue-hover hover:underline"
|
||||||
|
href="https://github.com/Instadapp/assembly-nuxt"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
Contribute on GitHub
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -19,7 +30,7 @@
|
||||||
|
|
||||||
<div class="fixed bottom-0 right-0 mr-10 mb-16">
|
<div class="fixed bottom-0 right-0 mr-10 mb-16">
|
||||||
<button
|
<button
|
||||||
@click="showSidebarBalances"
|
@click="showSidebarBalances"
|
||||||
class="px-9 h-[56px] bg-primary-blue-dark hover:bg-primary-blue-hover text-white rounded-[28px] text-lg font-semibold shadow flex items-center"
|
class="px-9 h-[56px] bg-primary-blue-dark hover:bg-primary-blue-hover text-white rounded-[28px] text-lg font-semibold shadow flex items-center"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
|
@ -105,7 +116,7 @@ export default defineComponent({
|
||||||
}, { immediate: true })
|
}, { immediate: true })
|
||||||
|
|
||||||
onErrorCaptured(() => {
|
onErrorCaptured(() => {
|
||||||
|
|
||||||
return false
|
return false
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -44,21 +44,21 @@ const appsPerNetwork = {
|
||||||
icon: AaveIcon,
|
icon: AaveIcon,
|
||||||
name: "Aave v2",
|
name: "Aave v2",
|
||||||
url: "/mainnet/aave-v2",
|
url: "/mainnet/aave-v2",
|
||||||
description: "Lend and borrow straight from your Gnosis Safe"
|
description: "Money Market"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "compound",
|
id: "compound",
|
||||||
icon: CompoundIcon,
|
icon: CompoundIcon,
|
||||||
name: "Compound",
|
name: "Compound",
|
||||||
url: "/mainnet/compound",
|
url: "/mainnet/compound",
|
||||||
description: "Lend and borrow straight from your Gnosis Safe"
|
description: "Money Market"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "maker",
|
id: "maker",
|
||||||
icon: MakerIcon,
|
icon: MakerIcon,
|
||||||
name: "MakerDAO",
|
name: "MakerDAO",
|
||||||
url: "/mainnet/maker",
|
url: "/mainnet/maker",
|
||||||
description: "Lend and borrow straight from your Gnosis Safe"
|
description: "Collateralized Debt"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
polygon: [
|
polygon: [
|
||||||
|
|
Loading…
Reference in New Issue
Block a user