Skip to content

Commit

Permalink
fix quicklinks (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
iploooox authored Oct 8, 2024
1 parent 9dd5786 commit 903efd5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
1 change: 0 additions & 1 deletion packages/execution-engine/src/ExecutionEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,6 @@ export class ExecutionEngine {
outputs: Record<string, unknown>,
): void {
this.updateWorkflowState(blockConfig.id, outputs);
// Additional logic to pass outputs to connected blocks could be implemented here
}

private handleBlockError(
Expand Down
49 changes: 25 additions & 24 deletions packages/www/app/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@ import { Link } from "@remix-run/react";
import { Button } from "~/components/ui/button";
import { Input } from "~/components/ui/input";

const quickLinks = [
{
label: "Documentation",
url: "https://docs.data-river.dev/",
},
{
label: "GitHub",
url: "https://github.com/softflow24/data-river",
},
{
label: "Discord",
url: "https://discord.com/invite/CmEqvZQUQn",
},
];

export default function Footer() {
return (
<footer className="bg-background text-secondary-foreground py-20 relative pt-40">
Expand All @@ -16,30 +31,16 @@ export default function Footer() {
<div className="w-full md:w-1/3 mb-6 md:mb-0">
<h3 className="text-xl font-bold mb-2">Quick Links</h3>
<ul>
<li>
<Link
to="#"
className="text-muted-foreground hover:text-primary"
>
Documentation
</Link>
</li>
<li>
<Link
to="#"
className="text-muted-foreground hover:text-primary"
>
GitHub
</Link>
</li>
<li>
<Link
to="#"
className="text-muted-foreground hover:text-primary"
>
Discord
</Link>
</li>
{quickLinks.map((link, idx) => (
<li key={idx}>
<Link
to={link.url}
className="text-muted-foreground hover:text-primary"
>
{link.label}
</Link>
</li>
))}
</ul>
</div>
<div className="w-full md:w-1/3">
Expand Down

0 comments on commit 903efd5

Please sign in to comment.