aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authormihna123 <mihailonvojinovic@gmail.com>2026-06-02 00:48:08 +0200
committermihna123 <mihailonvojinovic@gmail.com>2026-06-02 00:48:08 +0200
commitc6eea92f2a3016463f0c4b8e4b813afd846bf821 (patch)
tree21cd909ac1e04572d7821bae375823e0fcdc63b7 /src/components
parenta2f51b8641e9240d8c5f298a393f4ece73b21cd8 (diff)
downloadinvoice-c6eea92f2a3016463f0c4b8e4b813afd846bf821.tar.gz
invoice-c6eea92f2a3016463f0c4b8e4b813afd846bf821.zip
feat: add footer and contact info
Diffstat (limited to 'src/components')
-rw-r--r--src/components/footer.tsx15
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>
+ );
+};