major ui overhaul adding skeletonlabs design system
This commit is contained in:
40
src/routes/wallet/+page.svelte
Normal file
40
src/routes/wallet/+page.svelte
Normal file
@ -0,0 +1,40 @@
|
||||
<script>
|
||||
import Composite from '$lib/core/Composite.svelte';
|
||||
|
||||
let composite = {
|
||||
id: 'composite',
|
||||
layout: {
|
||||
areas: `
|
||||
"top"
|
||||
"main"
|
||||
"footer";
|
||||
`,
|
||||
rows: 'auto 1fr auto'
|
||||
},
|
||||
children: [
|
||||
{
|
||||
id: 'authsig',
|
||||
component: 'AuthSig',
|
||||
slot: 'top'
|
||||
},
|
||||
{
|
||||
id: 'wallet',
|
||||
component: 'Wallet',
|
||||
slot: 'main',
|
||||
store: {
|
||||
pkpWallet: '',
|
||||
rpcURL: 'https://rpc.gnosischain.com/',
|
||||
pkpPubKey:
|
||||
'046da3ba67065fd1e2726242ca01cd4601524893f4aa4b0042578fa6cbec28fa8c9a28eb9f7893932fc09717edc9e1db57e157a21eed346247c1db5a722a01f571'
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'terminal',
|
||||
component: 'Terminal',
|
||||
slot: 'footer'
|
||||
}
|
||||
]
|
||||
};
|
||||
</script>
|
||||
|
||||
<Composite {composite} />
|
Reference in New Issue
Block a user