-
Notifications
You must be signed in to change notification settings - Fork 823
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Invalidate workflows query when saved (#803)
Co-authored-by: Muhammed Salih Altun <muhammedsalihaltun@gmail.com>
- Loading branch information
1 parent
4800fe4
commit 995daba
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
skyvern-frontend/src/routes/workflows/WorkflowsBetaAlertCard.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import { Button } from "@/components/ui/button"; | ||
|
||
function WorkflowsBetaAlertCard() { | ||
return ( | ||
<div className="flex flex-col items-center rounded-lg bg-slate-900 p-4 shadow"> | ||
<header> | ||
<h1 className="py-4 text-3xl">Workflows (Beta)</h1> | ||
</header> | ||
<div>Workflows through UI are currently under construction.</div> | ||
<div> | ||
Today, you can create and run workflows through the Skyvern API. | ||
</div> | ||
<div className="flex gap-4 py-4"> | ||
<Button variant="secondary" asChild> | ||
<a | ||
href="https://docs.skyvern.com/workflows/creating-workflows" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
See the workflow docs | ||
</a> | ||
</Button> | ||
<Button asChild> | ||
<a | ||
href="https://meetings.hubspot.com/skyvern/demo" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
Book a demo | ||
</a> | ||
</Button> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export { WorkflowsBetaAlertCard }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters