summaryrefslogtreecommitdiff
path: root/src/components/widgets/Header.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/widgets/Header.astro')
-rw-r--r--src/components/widgets/Header.astro4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/widgets/Header.astro b/src/components/widgets/Header.astro
index f67ed7e..277411b 100644
--- a/src/components/widgets/Header.astro
+++ b/src/components/widgets/Header.astro
@@ -6,7 +6,9 @@ import { Icon } from 'astro-icon/components';
<div class="max-w-7xl mx-auto flex items-center justify-center">
<div class="flex items-center space-x-2">
<Icon name="tabler:mail" class="w-4 h-4" />
- <span class="text-sm font-medium">grestech.biuro@gmail.com</span>
+ <a href="mailto:grestech.biuro@gmail.com" class="text-sm font-medium hover:text-gray-300 transition-colors">
+ grestech.biuro@gmail.com
+ </a>
</div>
</div>
</header>