Skip to content

Commit 0bccc27

Browse files
committed
Added the workflow link to the footer
1 parent b7a45cc commit 0bccc27

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

app/components/Footer.tsx

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export function Footer() {
4444
</Body>
4545
</li>
4646
</ol>
47-
47+
<WorkflowFooterBanner />
4848
<ol className="flex gap-2 items-center h-full invisible md:visible">
4949
{minimal && (
5050
<li>
@@ -61,3 +61,21 @@ export function Footer() {
6161
</footer>
6262
);
6363
}
64+
65+
function WorkflowFooterBanner() {
66+
return (
67+
<a
68+
href="https://bcymafitv0e.typeform.com/workflows"
69+
target="_blank"
70+
className="hover:underline flex group hover:cursor-pointer text-slate-900 dark:text-white transition items-center dark:hover:text-transparent dark:hover:bg-clip-text dark:hover:bg-gradient-to-r dark:hover:from-purple-400 dark:hover:to-pink-600"
71+
>
72+
<p className="md:text-lg text-sm whitespace-nowrap">
73+
🚀 Help us out -
74+
<span className=" font-extrabold text-transparent bg-clip-text bg-gradient-to-r from-purple-500 to-pink-500">
75+
&nbsp; Take our 2 min survey
76+
</span>
77+
</p>
78+
<ArrowRightIcon className="ml-1 h-4 w-4 text-base text-slate-900 dark:text-white dark:group-hover:text-purple-400 transition" />
79+
</a>
80+
);
81+
}

0 commit comments

Comments
 (0)