major ui overhaul adding skeletonlabs design system

This commit is contained in:
Samuel Andert
2023-07-27 09:30:30 +02:00
parent 371e42e4ee
commit 460deb3be1
30 changed files with 994 additions and 1050 deletions

View 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} />