diff options
Diffstat (limited to 'src/components/footer.tsx')
| -rw-r--r-- | src/components/footer.tsx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/components/footer.tsx b/src/components/footer.tsx new file mode 100644 index 0000000..c07f42b --- /dev/null +++ b/src/components/footer.tsx @@ -0,0 +1,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> + ); +}; |
