Skip to content

Commit

Permalink
Merge pull request #6 from HausDAO/tweaking-styles
Browse files Browse the repository at this point in the history
The Six Million Dollar Styles
  • Loading branch information
earth2travis authored Jan 18, 2025
2 parents 4aac069 + 7fa8eb6 commit 8944fe9
Show file tree
Hide file tree
Showing 12 changed files with 241 additions and 184 deletions.
Binary file modified bun.lockb
Binary file not shown.
25 changes: 22 additions & 3 deletions src/app/sample/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,30 @@
import React from 'react';

import { SampleForm } from '@/components/forms/SampleForm';
import { BaalContractBase } from '@/lib/tx-prepper/tx-prepper';

export default function CharacterCreatorPage() {
export default function SamplePage() {
return (
<div className="w-full h-full space-y-4 pt-16 grow">
<SampleForm />
<div className="w-full h-full space-y-4 pt-1 grow">
<SampleForm
formConfig={{
id: 'sample',
tx: {
id: 'sample',
method: 'submitProposal',
contract: {
...BaalContractBase,
type: 'static',
targetAddress: '0x...',
},
args: [],
},
}}
confirmed={false}
loading={false}
invalidConnection={false}
handleSubmit={async () => {}}
/>
</div>
);
}
Loading

0 comments on commit 8944fe9

Please sign in to comment.