Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/job launch #25

Merged
merged 10 commits into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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