Skip to content

Commit

Permalink
Feat/job launch (AbdelStark#25)
Browse files Browse the repository at this point in the history
* generic form to launch program

* start result req

* start listen launch program job request

* any type for generic form program

* fix request event

* add view of created program + specific component

* update stwo examples + add internal stwo wasm in WIP for fibo and multi fibo

* fix wasm build

* change form home page with widefib + upgrade pkg

* fix generic call with the config program load in JOB_LAUNCH_PROGRAM
  • Loading branch information
MSghais authored Aug 6, 2024
1 parent 30ffeaf commit 5e56db3
Show file tree
Hide file tree
Showing 27 changed files with 2,595 additions and 578 deletions.
494 changes: 494 additions & 0 deletions askeladd-dvm-marketplace/src/app/components/InternalProgram.tsx

Large diffs are not rendered by default.

299 changes: 173 additions & 126 deletions askeladd-dvm-marketplace/src/app/components/ProgramCard.tsx

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions askeladd-dvm-marketplace/src/app/components/layout/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ const Navbar: React.FC = () => {
onClick={() => setIsOpen(!isOpen)}
className="nav-button-link rounded m-5 text-white">DVM ZK Config</Link>
</li>

<li className='my-5'>
<Link href={"/launch-program"}
onClick={() => setIsOpen(!isOpen)}
className="nav-button-link rounded m-5 text-white">Launch program</Link>
</li>
</ul>
</div>
</div>
Expand Down
30 changes: 30 additions & 0 deletions askeladd-dvm-marketplace/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -385,4 +385,34 @@ main {
border-radius: 0.25rem;
transition: all 0.3s ease;
text-shadow: none;
}

.secondary-button {
/* width: 100%; */
background: var(--neon-blue);
color: #000000;
border: 1px solid #000000;
box-shadow: 0 0 8px var(--neon-blue);
text-transform: uppercase;
letter-spacing: 1px;
font-weight: bold;
padding: 0.5rem 1rem;
border-radius: 0.25rem;
transition: all 0.3s ease;
text-shadow: none;
}

.basic-button {
/* width: 100%; */
background: var(--neon-blue);
color: #000000;
border: 1px solid #000000;
box-shadow: 0 0 2px var(--neon-blue);
text-transform: uppercase;
letter-spacing: 1px;
font-weight: bold;
padding: 0.25rem 0.5rem;
border-radius: 0.25rem;
transition: all 0.3s ease;
text-shadow: none;
}
Loading

0 comments on commit 5e56db3

Please sign in to comment.