blob: f5d52363035172f84c4368347ef537f638ca0c09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
---
import { Icon } from 'astro-icon/components';
import { SITE } from 'astrowind:config';
---
<header class="bg-black text-white py-2 px-4">
<div class="max-w-7xl mx-auto flex items-center justify-between">
<div class="flex items-center space-x-2">
<Icon name="tabler:phone" class="w-4 h-4" />
<a href="tel:+48790209770" class="text-sm font-medium hover:text-gray-300 transition-colors"> +48 790-209-770 </a>
</div>
{
SITE.social && (SITE.social.facebook || SITE.social.instagram) && (
<div class="flex items-center space-x-3">
{SITE.social.facebook && (
<a
href={SITE.social.facebook}
aria-label="Facebook"
class="text-white hover:text-gray-300 transition-colors"
target="_blank"
rel="noopener noreferrer"
>
<Icon name="tabler:brand-facebook" class="w-4 h-4" />
</a>
)}
{SITE.social.instagram && (
<a
href={SITE.social.instagram}
aria-label="Instagram"
class="text-white hover:text-gray-300 transition-colors"
target="_blank"
rel="noopener noreferrer"
>
<Icon name="tabler:brand-instagram" class="w-4 h-4" />
</a>
)}
</div>
)
}
</div>
</header>
|