-
diff --git a/ui/components/jobs/Job.tsx b/ui/components/jobs/Job.tsx
index 222fb1dbd..919067fea 100644
--- a/ui/components/jobs/Job.tsx
+++ b/ui/components/jobs/Job.tsx
@@ -22,6 +22,7 @@ export type Job = {
}
type JobProps = {
+ id?: string
job: Job
jobTableContract?: any
refreshJobs?: any
@@ -31,6 +32,7 @@ type JobProps = {
}
export default function Job({
+ id,
job,
jobTableContract,
refreshJobs,
@@ -71,6 +73,8 @@ export default function Job({
<>
{isActive && (
diff --git a/ui/components/layout/Footer.tsx b/ui/components/layout/Footer.tsx
index d013a2ea9..7e1e8b0ff 100644
--- a/ui/components/layout/Footer.tsx
+++ b/ui/components/layout/Footer.tsx
@@ -1,79 +1,114 @@
// footer.tsx
-
-import Link from 'next/link';
+import Link from 'next/link'
interface FooterProps {
- darkBackground?: boolean;
+ darkBackground?: boolean
+}
+
+type FooterTokenLinkProps = {
+ href: string
+ label: string
+}
+
+function FooterTokenLink({ href, label }: FooterTokenLinkProps) {
+ return (
+
+
+
+ {label}
+
+
+
+ )
}
export default function Footer({ darkBackground = false }: FooterProps) {
- return (
-