blob: 277411b3ad87200a8db886c13cf218a5857c9495 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
import { Icon } from 'astro-icon/components';
---
<header class="bg-black text-white py-2 px-4">
<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" />
<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>
|