Skip to content

Commit 6afa68e

Browse files
Henrique FerreiraMatheusDubin
authored andcommitted
feat: Add a shelter registration button at the top to make it more prominent.
1 parent a97f7e9 commit 6afa68e

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/components/Header/Header.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,16 @@ const Header = React.forwardRef<HTMLDivElement, IHeader>((props, ref) => {
2424
{startAdornment}
2525
<h3 className="font-medium text-white">{title}</h3>
2626
</div>
27-
<div className="cursor-pointer ">{endAdornment}</div>
27+
<div className="flex">
28+
<a
29+
href="https://forms.gle/2S7L2gR529Dc8P3T9"
30+
className="bg-white hover:bg-rose-50 text-red-600 font-medium py-2 px-4 rounded-full"
31+
target="_blank"
32+
>
33+
Cadastrar abrigo
34+
</a>
35+
<div className="cursor-pointer ">{endAdornment}</div>
36+
</div>
2837
</div>
2938
);
3039
});

0 commit comments

Comments
 (0)