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