blob: c07f42b208c9c4a5db57eb91ddf987d1a4e04a3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
export const Footer = () => {
return (
<footer className="w-full bg-gray-400 p-2 text-center">
<p className="font-bold text-white">
Having issues? Contact me here:{' '}
<a
href="mailto:mihailonvojinovic@gmail.com"
className="font-normal text-blue-700 underline"
>
mihailonvojinovic@gmail.com
</a>
</p>
</footer>
);
};
|